flowtide
flowtide copied to clipboard
Sql type validation
This change adds type validation to the query plan creation step when using SQL.
It tries to solve one of the common issues with:
WHERE boolValue = 1
which would always equal false, and can cause confusion. This change will instead throw an exception to tell the user that a bool value and an integer value are compared. This only works with sources that can actually provide type details such as sql server.