Open cody-scott opened 2 months ago
These lines have, what i think to be, an incorrect call to {{ information_schema_hints() }}. https://github.com/microsoft/dbt-fabric/blob/main/dbt/include/fabric/macros/adapters/catalog.sql#L99 https://github.com/microsoft/dbt-fabric/blob/main/dbt/include/fabric/macros/adapters/catalog.sql#L226
When applying an {{ information_schema_hints() }}, such as with (nolock), certain materializations fail, such as incremental materializations.
{{ information_schema_hints() }}
with (nolock)
Proposing removing those two calls to {{ information_schema_hints() }}
These lines have, what i think to be, an incorrect call to {{ information_schema_hints() }}. https://github.com/microsoft/dbt-fabric/blob/main/dbt/include/fabric/macros/adapters/catalog.sql#L99 https://github.com/microsoft/dbt-fabric/blob/main/dbt/include/fabric/macros/adapters/catalog.sql#L226
When applying an
{{ information_schema_hints() }}
, such aswith (nolock)
, certain materializations fail, such as incremental materializations.Proposing removing those two calls to
{{ information_schema_hints() }}