"select l from Location l where l.path like any (select c.path from Country c)"
causes
This does not throw the exception, showing that "any" is supported, but not in combination with "like":
"select l from Location l where l.path = any (select c.path from Country c)"
|