Skip to content

Commit a528450

Browse files
deepyamangforsyth
authored andcommitted
docs(bigquery): add note on schema to insert()
1 parent 120b2d8 commit a528450

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

ibis/backends/bigquery/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -863,6 +863,17 @@ def insert(
863863
) -> None:
864864
"""Insert data into a table.
865865
866+
::: {.callout-note}
867+
## Ibis does not use the word `schema` to refer to database hierarchy.
868+
869+
A collection of `table` is referred to as a `database`.
870+
A collection of `database` is referred to as a `catalog`.
871+
872+
These terms are mapped onto the corresponding features in each
873+
backend (where available), regardless of whether the backend itself
874+
uses the same terminology.
875+
:::
876+
866877
Parameters
867878
----------
868879
name

ibis/backends/sql/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,8 +652,9 @@ def truncate_table(
652652
::: {.callout-note}
653653
## Ibis does not use the word `schema` to refer to database hierarchy.
654654
655-
A collection of tables is referred to as a `database`.
655+
A collection of `table` is referred to as a `database`.
656656
A collection of `database` is referred to as a `catalog`.
657+
657658
These terms are mapped onto the corresponding features in each
658659
backend (where available), regardless of whether the backend itself
659660
uses the same terminology.

0 commit comments

Comments
 (0)