INTERNAL
Validate the current node.
if (having != null) {
having.validate(context);
if ((groupbyNode != null) && !groupbyNode.isValidHavingExpr(having)) {
throw EJBQLException.invalidHavingExpression(
context.getQueryInfo(), having.getLine(), having.getColumn(),
having.getAsString(), groupbyNode.getAsString());
}
}