@@ -664,7 +664,7 @@ def create_catalog(self, name: str, /, *, force: bool = False) -> None:
664
664
backend (where available), regardless of the terminology the backend uses.
665
665
666
666
See the
667
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
667
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
668
668
for more info.
669
669
:::
670
670
@@ -690,7 +690,7 @@ def drop_catalog(self, name: str, /, *, force: bool = False) -> None:
690
690
backend (where available), regardless of the terminology the backend uses.
691
691
692
692
See the
693
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
693
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
694
694
for more info.
695
695
:::
696
696
@@ -720,7 +720,7 @@ def list_databases(
720
720
backend (where available), regardless of the terminology the backend uses.
721
721
722
722
See the
723
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
723
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
724
724
for more info.
725
725
:::
726
726
@@ -758,7 +758,7 @@ def create_database(
758
758
backend (where available), regardless of the terminology the backend uses.
759
759
760
760
See the
761
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
761
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
762
762
for more info.
763
763
:::
764
764
@@ -790,7 +790,7 @@ def drop_database(
790
790
backend (where available), regardless of the terminology the backend uses.
791
791
792
792
See the
793
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
793
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
794
794
for more info.
795
795
:::
796
796
@@ -1041,7 +1041,7 @@ def list_tables(
1041
1041
(and catalog, if applicable for this backend) is used.
1042
1042
1043
1043
See the
1044
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
1044
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
1045
1045
for more info.
1046
1046
1047
1047
Returns
@@ -1090,7 +1090,7 @@ def table(
1090
1090
(and catalog, if applicable for this backend) is used.
1091
1091
1092
1092
See the
1093
- [Table Heirarchy Concepts Guide](/concepts/backend-table-heirarchy .qmd)
1093
+ [Table Hierarchy Concepts Guide](/concepts/backend-table-hierarchy .qmd)
1094
1094
for more info.
1095
1095
1096
1096
Returns
@@ -1109,13 +1109,13 @@ def table(
1109
1109
>>> backend.table("foo") # doctest: +SKIP
1110
1110
1111
1111
Get the "foo" table from the "bar" database
1112
- (in duckdb 's language they would say the "bar" schema,
1112
+ (in DuckDB 's language they would say the "bar" schema,
1113
1113
in SQL this would be `"bar"."foo"`)
1114
1114
1115
1115
>>> backend.table("foo", database="bar") # doctest: +SKIP
1116
1116
1117
1117
Get the "foo" table from the "bar" database, within the "baz" catalog
1118
- (in duckdb 's language they would say the "bar" schema, and "baz" database,
1118
+ (in DuckDB 's language they would say the "bar" schema, and "baz" database,
1119
1119
in SQL this would be `"baz"."bar"."foo"`)
1120
1120
1121
1121
>>> backend.table("foo", database=("baz", "bar")) # doctest: +SKIP
0 commit comments