flowtide icon indicating copy to clipboard operation
flowtide copied to clipboard

Sql type validation

Open Ulimo opened this issue 1 year ago • 0 comments

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.

Ulimo avatar Sep 14 '24 14:09 Ulimo