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
The ViewsHandlerFilterStringTest fails. The call to query->add_where_expression() sends an integer as the placeholder value. By the time it gets to PDO, it has been converted to a string and SQLite executes LENGTH(field) < '5' instead of LENGTH(field) < 5. SQLite doesn't coerce types. It treats '5' as zero.
The text was updated successfully, but these errors were encountered:
The
ViewsHandlerFilterStringTest
fails. The call toquery->add_where_expression()
sends an integer as the placeholder value. By the time it gets to PDO, it has been converted to a string and SQLite executesLENGTH(field) < '5'
instead ofLENGTH(field) < 5
. SQLite doesn't coerce types. It treats'5'
as zero.The text was updated successfully, but these errors were encountered: