Package org.teiid.query.sql.symbol

Examples of org.teiid.query.sql.symbol.SelectSymbol.clone()


      List thisSymbols = getSymbols();
      List copySymbols = new ArrayList(thisSymbols.size());
      Iterator iter = thisSymbols.iterator();
      while(iter.hasNext()) {
        SelectSymbol ss = (SelectSymbol) iter.next();
        copySymbols.add(ss.clone());   
      }
           
    Select copy = new Select(copySymbols);
    copy.setDistinct( isDistinct() );
    return copy;
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.