Anders
Anders
solutioin: override the dbt-core's `global_project/macros/materializations/seeds/helpers.sql`'s `default__create_csv_table`, `synapse__create_csv_table`. this new version should fetch specified configuration (and use sensible defaults) similar to how `synapse__create_table_as` works. helpers.sql default https://github.com/dbt-labs/dbt-core/blob/0721f2c1b70eca233326cdd7d3de755924415b20/core/dbt/include/global_project/macros/materializations/seeds/helpers.sql#L6
related to: https://github.com/dbt-msft/dbt-sqlserver/issues/163
you've read my mind: see #4
perhaps for all the unsupported macros, we could implement `sqlserver__*` versions as wrappers for `UnsupportedException`s. @jtcohen6 I remember seeing an example of this somewhere but can't remember now...
thanks @infused-kim for opening the issue! it makes all the work worthwhile knowing that people are not only using it, but contributing ideas for how to make it better! Short-term,...
@EloiSanchez good callout! you've got two options, and both of them make use of something called the [compatible release operator (`~=`)](https://peps.python.org/pep-0440/#compatible-release) ### force install `dbt-core` version `1.4` alongside dbt-sqlite you...
FYI just signed the OCA
@Sachin-Thakur check out #110 the guide is linked in there
so I found out why `ref` was overridden and why within `create_materialized_view_as.sql` of all places. The Create Materialized View as Select (CMVAS) statement in Azure Synapse does not support three-part...
another update -- this isn't just a limitation of materialized view. it's all of Azure Synapse. Accordingly, there are in this adapter - 10 instances of `relation.include(database=False)` and - 4...