We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
colB.ilike('%value%') produces lower(colB) LIKE lower('%value%')
colB.ilike('%value%')
lower(colB) LIKE lower('%value%'
`colB ILIKE '%value%'
snowflake-connector-python
Keeps consistent behavior between SQLA API and snowflake SQL.
Snowflake SQL reference: https://docs.snowflake.com/en/sql-reference/functions/ilike
SQLA reference: https://docs.sqlalchemy.org/en/20/core/sqlelement.html#sqlalchemy.sql.expression.ColumnElement.ilike https://docs.sqlalchemy.org/en/20/core/sqlelement.html#sqlalchemy.sql.expression.ColumnOperators.ilike
The text was updated successfully, but these errors were encountered:
hey; thanks for filing this enhancement request with us !
Sorry, something went wrong.
No branches or pull requests
What is the current behavior?
colB.ilike('%value%')
produceslower(colB) LIKE lower('%value%'
)What is the desired behavior?
`colB ILIKE '%value%'
How would this improve
snowflake-connector-python
?Keeps consistent behavior between SQLA API and snowflake SQL.
References, Other Background
Snowflake SQL reference: https://docs.snowflake.com/en/sql-reference/functions/ilike
SQLA reference:
https://docs.sqlalchemy.org/en/20/core/sqlelement.html#sqlalchemy.sql.expression.ColumnElement.ilike
https://docs.sqlalchemy.org/en/20/core/sqlelement.html#sqlalchemy.sql.expression.ColumnOperators.ilike
The text was updated successfully, but these errors were encountered: