Closed Kayrnt closed 1 year ago
Using ToSQLString should fix pushdown predicates constant value output to the underlying mysql.
Before: SELECT * FROM filter_pushdown_string WHERE my_string_field=somevalue
SELECT * FROM filter_pushdown_string WHERE my_string_field=somevalue
After: SELECT * FROM filter_pushdown_string WHERE my_string_field='somevalue'
SELECT * FROM filter_pushdown_string WHERE my_string_field='somevalue'
Thanks!
Using ToSQLString should fix pushdown predicates constant value output to the underlying mysql.
Before:
SELECT * FROM filter_pushdown_string WHERE my_string_field=somevalue
After:
SELECT * FROM filter_pushdown_string WHERE my_string_field='somevalue'