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
SELECT version()
┌─version()─┐
│ 23.8.9.54 │
└───────────┘
createtablee (value Enum('hello', 'world')) ENGINE = Log; -- OKinsert into e values('hello'); -- OK-- Query 'hello' by its underlying numeric valueselect value from e where value ='1'-- BAD: it should have failed probably
┌─value─┐
│ hello │
└───────┘
-- value IN ('1') also worksselect value from e where value ='3'-- OK: this one fails
Expected behavior
I would expect value = '1' or value IN ('1') to fail with "Unknown element error".
The text was updated successfully, but these errors were encountered:
Describe the unexpected behaviour
Expected behavior
I would expect
value = '1'
orvalue IN ('1')
to fail with "Unknown element error".The text was updated successfully, but these errors were encountered: