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
Currently we can't define on Columns the option : snowflake_rely=True unless we
use @compiles decorator on CreateTable or we use event.listen after tables creation
What is the desired behavior?
The ability to set rely on constraints when defining a table like this :
Table('table_name', metadata,
Column('col_name', col_type, primary_key=True, snowflake_rely=True),
Column('col_name', col_type, ForeignKey("t.col"), snowflake_rely=True)
)
How would this improve snowflake-connector-python?
Add the functionality
The text was updated successfully, but these errors were encountered:
Description :
Currently we can't define on Columns the option : snowflake_rely=True unless we
use @compiles decorator on CreateTable or we use event.listen after tables creation
What is the desired behavior?
The ability to set rely on constraints when defining a table like this :
Table('table_name', metadata,
Column('col_name', col_type, primary_key=True, snowflake_rely=True),
Column('col_name', col_type, ForeignKey("t.col"), snowflake_rely=True)
)
How would this improve
snowflake-connector-python
?Add the functionality
The text was updated successfully, but these errors were encountered: