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
Inspecting the rail road diagram, I noticed that we support ILIKE but not NOT ILIKE.
ILIKE can be used instead of LIKE to make the operator case insensitive.
ILIKE is not in the SQL standard, but I think we should support both (ILIKe and NOT ILIKE) or none.
Note, ILIKE is not (yet) supported by Hyrise.
The text was updated successfully, but these errors were encountered:
Yes, NOT should and is already supported in front of any expression as unary operator.
However, ILIKE requires a value/attribute before and pattern after, and is, thus handled separately in the parser.
Inspecting the rail road diagram, I noticed that we support ILIKE but not NOT ILIKE.
ILIKE can be used instead of LIKE to make the operator case insensitive.
ILIKE is not in the SQL standard, but I think we should support both (ILIKe and NOT ILIKE) or none.
Note, ILIKE is not (yet) supported by Hyrise.
The text was updated successfully, but these errors were encountered: