Package com.alibaba.druid.sql.dialect.odps.ast

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


        accept(Token.SHOW);
       
        if (identifierEquals("PARTITIONS")) {
            lexer.nextToken();
           
            OdpsShowPartitionsStmt stmt = new OdpsShowPartitionsStmt();
           
            SQLExpr expr = this.exprParser.expr();
            stmt.setTableSource(new SQLExprTableSource(expr));
           
            return stmt;
        }
       
        if (identifierEquals("STATISTIC")) {
            lexer.nextToken();
           
            OdpsShowStatisticStmt stmt = new OdpsShowStatisticStmt();
           
            SQLExpr expr = this.exprParser.expr();
            stmt.setTableSource(new SQLExprTableSource(expr));
           
            return stmt;
        }
        throw new ParserException("TODO " + lexer.token() + " " + lexer.stringVal());
    }
View Full Code Here

TOP

Related Classes of com.alibaba.druid.sql.dialect.odps.ast.OdpsShowPartitionsStmt

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.