Examples of OdpsShowStatisticStmt


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

        }
       
        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
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.