-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(hierarchy): add brief doc listing backend hierarchy types
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: Backend Table Hierarchy | ||
--- | ||
|
||
Several SQL backends support two levels of hierarchy in organizing tables | ||
(although the levels are also used for other purposes, like data access, | ||
billing, etc.). | ||
|
||
Ibis uses the following terminology: | ||
|
||
- `database`: a collection of tables | ||
- `catalog`: a collection of databases | ||
|
||
Below is a table with the terminology used by each backend for the two levels of | ||
hierarchy. This is provided as a reference, note that when using Ibis, we will | ||
use the terms `catalog` and `database` and map them onto the appropriate fields. | ||
|
||
|
||
| Backend | Catalog | Database | | ||
|------------|----------------|------------| | ||
| bigquery | project | database | | ||
| clickhouse | | database | | ||
| dask | | NA | | ||
| datafusion | catalog | schema | | ||
| druid | dataSourceType | dataSource | | ||
| duckdb | database | schema | | ||
| flink | catalog | database | | ||
| impala | | database | | ||
| mssql | database | schema | | ||
| mysql | | database | | ||
| oracle | | database | | ||
| pandas | | NA | | ||
| polars | | NA | | ||
| postgres | database | schema | | ||
| pyspark | | database | | ||
| risingwave | database | schema | | ||
| snowflake | | database | | ||
| trino | catalog | schema | |