Package org.apache.cassandra.cql.common

Examples of org.apache.cassandra.cql.common.ExplainPlan


            // first, generate a plan for <stmt>
            // and then, wrapper it with a special ExplainPlan plan
            // whose execution will result in an explain plan rather
            // than a normal execution of the statement.
            plan = doSemanticAnalysis((CommonTree)(ast.getChild(0)));
            plan = new ExplainPlan(plan);
            break;
        default:
            // Unhandled AST node. Raise an internal error.
            throw new SemanticException(CompilerErrorMsg.INTERNAL_ERROR.getMsg(ast, "Unknown Node Type: " + ast.getType()));
        }
View Full Code Here

TOP

Related Classes of org.apache.cassandra.cql.common.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.