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?
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