Possible issue for JPQL IS EMPTY comparison expression:
SELECT e FROM MyEntity e WHERE e.collection-valued IS EMPTY
 throws javax.persistence.PersistenceException:
 Invalid operand type  for operator IS EMPTY (error 756)  
Thanks.
Note: It doesn' t work with SIZE():
SELECT e FROM MyEntity e WHERE SIZE(e.collection-valued)=0
