Package org.yaac.server.egql.exception

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


        itemNames.add(item.getIdentity());
      }
     
      // aggregation function is not allowed in insert statement without select clause
      if (!item.getE().aggregationChildren().isEmpty() && this.selectStmt == null) {
        throw new EGQLE051Exception();
      }
     
      // field is not allowed in insert statement without select clause
      if (!item.getE().nonAggregationProperties().isEmpty() && this.selectStmt == null) {
        throw new EGQLE052Exception();
View Full Code Here

TOP

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

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.