Package org.teiid.query.sql.lang.ExistsCriteria

Examples of org.teiid.query.sql.lang.ExistsCriteria.SubqueryHint


            }       
        }
    }
   
    SubqueryHint getSubqueryHint(Token t) {
      SubqueryHint hint = new SubqueryHint();
      String[] parts = getComment(t).split("\\s"); //$NON-NLS-1$
      for (int i = 0; i < parts.length; i++) {
            if (parts[i].equalsIgnoreCase(SubqueryHint.MJ)) {
                hint.setMergeJoin(true);
            } else if (parts[i].equalsIgnoreCase(SubqueryHint.NOUNNEST)) {
              hint.setNoUnnest(true);
            }
        }
      return hint;
    }
View Full Code Here

TOP

Related Classes of org.teiid.query.sql.lang.ExistsCriteria.SubqueryHint

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.