Examples of OdpsUDTFSQLSelectItem


Examples of com.alibaba.druid.sql.dialect.odps.ast.OdpsUDTFSQLSelectItem

            lexer.nextToken();
           
            if (lexer.token() == Token.LPAREN) {
                lexer.nextToken();
               
                OdpsUDTFSQLSelectItem selectItem = new OdpsUDTFSQLSelectItem();
               
                selectItem.setExpr(expr);
               
                for (;;) {
                    String alias = lexer.stringVal();
                    lexer.nextToken();
                   
                    selectItem.getAliasList().add(alias);
                   
                    if (lexer.token() == Token.COMMA) {
                        lexer.nextToken();
                        continue;
                    }
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.