We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c308b1b commit d00e780Copy full SHA for d00e780
gooddata-dbt/gooddata_dbt/dbt/profiles.py
@@ -11,6 +11,7 @@
11
BasicCredentials,
12
CatalogDataSourceMotherDuck,
13
CatalogDataSourcePostgres,
14
+ CatalogDataSourceRedshift,
15
CatalogDataSourceSnowflake,
16
CatalogDataSourceVertica,
17
MotherDuckAttributes,
@@ -67,8 +68,8 @@ class DbtOutputRedshift(Base):
67
68
database: str = attrs.field(default=attrs.Factory(lambda self: self.dbname, takes_self=True))
69
schema: str
70
- def to_gooddata(self, data_source_id: str, schema_name: str) -> CatalogDataSourcePostgres:
71
- return CatalogDataSourcePostgres(
+ def to_gooddata(self, data_source_id: str, schema_name: str) -> CatalogDataSourceRedshift:
72
+ return CatalogDataSourceRedshift(
73
id=data_source_id,
74
name=self.title,
75
db_specific_attributes=RedshiftAttributes(
0 commit comments