-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump dependencies to 1.8 (#46)
- Loading branch information
1 parent
f58af57
commit 88bd89b
Showing
5 changed files
with
54 additions
and
33 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 |
---|---|---|
@@ -1 +1 @@ | ||
version = "1.7.4" | ||
version = "1.8.0" |
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
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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
from dbt.adapters.postgres.impl import PostgresAdapter | ||
|
||
from typing import Optional, List | ||
from dbt.adapters.sql import SQLAdapter as adapter_cls | ||
from dbt.adapters.base.relation import BaseRelation | ||
from dbt.adapters.risingwave import RisingWaveConnectionManager | ||
from dbt.adapters.risingwave.connections import RisingWaveConnectionManager | ||
from dbt.adapters.risingwave.relation import RisingWaveRelation | ||
from dbt.adapters.postgres import PostgresAdapter | ||
|
||
|
||
class RisingWaveAdapter(PostgresAdapter): | ||
ConnectionManager = RisingWaveConnectionManager | ||
Relation = RisingWaveRelation | ||
|
||
def _link_cached_relations(self, manifest): | ||
# lack of `pg_depend`, `pg_rewrite` | ||
pass |
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
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