On our Qserv install queries using NOT LIKE return the same as those using LIKE, we’re on a fairly recent build (a week or so old). Seems like an issue but I’m not sure if LIKE is supposed to be implemented or not.
Thanks
Mike
select shortName from Filter where shortName LIKE ‘Z’;
±----------+
| shortName |
±----------+
| Z |
±----------+
select shortName from Filter where shortName NOT LIKE ‘Z’;
±----------+
| shortName |
±----------+
| Z |
±----------+