Package org.yaac.server.egql.exception

Examples of org.yaac.server.egql.exception.EGQLE001Exception


           nonAggregationProperties.addAll(e.nonAggregationProperties());
        }
       
        if (!nonAggregationProperties.isEmpty()) {
          if (groupByClause == null) {
            throw new EGQLE001Exception();
          } else {
            nonAggregationProperties.removeAll(groupByClause.items());
            if (! nonAggregationProperties.isEmpty()) {
              // some fields are not in group by function
              throw new EGQLE001Exception()
            }
          }
        } 
      }
    }
View Full Code Here

TOP

Related Classes of org.yaac.server.egql.exception.EGQLE001Exception

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.