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
Commit ffcc91a introduced client side validation of values and it now breaks otherwise harmless where clauses. This has already been noted by comments on #993.
I am not sure I agree that this should happen client side (now the database and exposed table objects can no longer diverge.. something really useful in migrations ops-wise). If anything it seems to relate to a lack of support in Postgres which seems to make the case that it should be a dialect specific behavior instead.
One might think this could then be fixed by constant folding the where clauses to avoid calling notNullValueToDB with an invalid value but I dont think its that easy.
The text was updated successfully, but these errors were encountered:
Commit ffcc91a introduced client side validation of values and it now breaks otherwise harmless where clauses. This has already been noted by comments on #993.
I am not sure I agree that this should happen client side (now the database and exposed table objects can no longer diverge.. something really useful in migrations ops-wise). If anything it seems to relate to a lack of support in Postgres which seems to make the case that it should be a dialect specific behavior instead.
One might think this could then be fixed by constant folding the where clauses to avoid calling
notNullValueToDB
with an invalid value but I dont think its that easy.The text was updated successfully, but these errors were encountered: