Examples of JoinQueryVisitor


Examples of org.teiid.translator.salesforce.execution.visitors.JoinQueryVisitor

    try {
      LogManager.logDetail(LogConstants.CTX_CONNECTOR, getLogPreamble(), "Incoming Query:", query); //$NON-NLS-1$
      List<TableReference> from = ((Select)query).getFrom();
      String finalQuery;
      if(from.get(0) instanceof Join) {
        visitor = new JoinQueryVisitor(metadata);
        visitor.visitNode(query);
        finalQuery = visitor.getQuery().trim();
        LogManager.logDetail(LogConstants.CTX_CONNECTOR, getLogPreamble(), "Executing Query:", finalQuery); //$NON-NLS-1$
        results = connection.query(finalQuery, this.context.getBatchSize(), visitor.getQueryAll());
      } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.