Implement visitBooleanExpressionPredicate

XMLWordPrintableJSON

    • Type: New Feature
    • Resolution: Done
    • Priority: Minor - P4
    • 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();
      }

       

            Assignee:
            Nathan Xu
            Reporter:
            Nathan Xu
            Slav Babanin
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: