You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using contract enforcement and setting a sql_header can cause the DuckDB adapter to encounter errors when it attempts to describe the structure of a query because the sql_header is included when it shouldn't be.
For example it attempts to run:
# dbt_project.yml+sql_header: | set pg_connection_limit = 3 ; set threads = 2 ;
Using contract enforcement and setting a sql_header can cause the DuckDB adapter to encounter errors when it attempts to describe the structure of a query because the sql_header is included when it shouldn't be.
For example it attempts to run:
Which results in the error:
Instead the adapter should not be inserting sql_header into the top of the query it is attempting to describe. You can work around this with:
The text was updated successfully, but these errors were encountered: