Package org.apache.phoenix.compile

Examples of org.apache.phoenix.compile.ExplainPlan


        }
        if (joinInfo.getPostJoinFilterExpression() != null) {
          planSteps.add("    AFTER-JOIN SERVER FILTER BY " + joinInfo.getPostJoinFilterExpression().toString());
        }
       
        return new ExplainPlan(planSteps);
    }
View Full Code Here


                    return new PhoenixParameterMetaData(0);
                }

                @Override
                public ExplainPlan getExplainPlan() throws SQLException {
                    return new ExplainPlan(Collections.singletonList("ALTER " + getTableType() + " DROP COLUMN"));
                }

                @Override
                public PhoenixConnection getConnection() {
                    return stmt.getConnection();
View Full Code Here

TOP

Related Classes of org.apache.phoenix.compile.ExplainPlan

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.