Skip to content

Commit

Permalink
Add support for RisingWave
Browse files Browse the repository at this point in the history
  • Loading branch information
binste committed Jan 5, 2025
1 parent b74effd commit 410876d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dbt_ibis/_dialects.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
DBTAdapterType("oracle"): IbisDialect("oracle"),
DBTAdapterType("duckdb"): IbisDialect("duckdb"),
DBTAdapterType("bigquery"): IbisDialect("bigquery"),
DBTAdapterType("risingwave"): IbisDialect("risingwave"),
}

IbisDialectToTypeMapper: dict[IbisDialect, type[TypeMapper]] = {
Expand All @@ -33,6 +34,7 @@
IbisDialect("oracle"): sql_dt.OracleType,
IbisDialect("duckdb"): sql_dt.DuckDBType,
IbisDialect("bigquery"): sql_dt.BigQueryType,
IbisDialect("risingwave"): sql_dt.RisingWaveType,
}


Expand Down
1 change: 1 addition & 0 deletions doc/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Supported dbt adapters:
* BigQuery
* Postgres
* Redshift
* RisingWave
* Trino
* MySQL
* SQLite
Expand Down

0 comments on commit 410876d

Please sign in to comment.