duckdb / duckdb_mysql

https://duckdb.org/docs/extensions/mysql
MIT License
47 stars 11 forks source link

Fix predicate pushdown for string columns #6

Closed Kayrnt closed 10 months ago

Kayrnt commented 10 months 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

After: SELECT * FROM filter_pushdown_string WHERE my_string_field='somevalue'

Mytherin commented 10 months ago

Thanks!