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
.. which works, but we had problems with users trying to use != and &, so we started warning on that instead of thinking through the problems
... and then without thinking it through, we did IN so now
status != 'Cancelled' | 'Returned'
writes status NOT IN ('Cancelled','Returned') is NOT the same as the alternation tree applied to the value.
The time has come to have more than a "put a bandaid on it and go implement something new" solution to this.
The text was updated successfully, but these errors were encountered:
mtoy-googly-moogly
changed the title
x != 'a' & 'b' and x =
x != 'a' & 'b' and x = 'a' | 'b' Mean the same thing
Jan 3, 2025
There is code in our ecommerce example which uses
.. which works, but we had problems with users trying to use
!=
and&
, so we started warning on that instead of thinking through the problems... and then without thinking it through, we did IN so now
writes
status NOT IN ('Cancelled','Returned')
is NOT the same as the alternation tree applied to the value.The time has come to have more than a "put a bandaid on it and go implement something new" solution to this.
The text was updated successfully, but these errors were encountered: