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
Backrgound
Snowflake allows to add hints to columns for PRIMARY KEY and UNIQUE. those hints are not enforced but used for query planning. We want to add those hints to SQL we generate - like we do for postgres or duckdb.
Tasks
make behavior optional and switched off by default
generate PRIMARY KEY and UNIQUE hints.
make sure to test what happens if we set both
tests multi column hints. not sure if they are supported
Backrgound
Snowflake allows to add hints to columns for PRIMARY KEY and UNIQUE. those hints are not enforced but used for query planning. We want to add those hints to SQL we generate - like we do for postgres or duckdb.
Tasks
More info
https://docs.snowflake.com/en/sql-reference/constraints-overview
It seems that multi column hints must be generated as separate SQL statement. That may need some changes in
sql_job_client
. there was support for that but never usedThe text was updated successfully, but these errors were encountered: