-
Type:
New Feature
-
Resolution: Done
-
Priority:
Minor - P4
-
None
-
2
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Suppose we have a `outOfStock` entity field of boolean type for `Book` entity,
@Entity public class Book { ... ... boolean outOfStock; }
Currently the following HQL will fail
from Book where outOfStock
with the exception that the following visitor method has not been implemented:
@Override public void visitBooleanExpressionPredicate(BooleanExpressionPredicate booleanExpressionPredicate) { throw new FeatureNotSupportedException(); }