Package org.teiid.client.plan

Examples of org.teiid.client.plan.PlanNode


    public String toString() {
        return "NEXT " + resultSetName; //$NON-NLS-1$
    }

    public PlanNode getDescriptionProperties() {
        PlanNode props = new PlanNode("NEXT ROW"); //$NON-NLS-1$
        props.addProperty(PROP_RESULT_SET, this.resultSetName);
        return props;
    }
View Full Code Here


    public String toString(){
        return "CREATE CURSOR RESULTSET INSTRUCTION - " + rsName; //$NON-NLS-1$
    }
   
    public PlanNode getDescriptionProperties() {
        PlanNode props = new PlanNode("CREATE CURSOR"); //$NON-NLS-1$
        props.addProperty(PROP_RESULT_SET, this.rsName);
        props.addProperty(PROP_SQL, this.plan.getDescriptionProperties());
        return props;
    }
View Full Code Here

    public String toString() {
        return "LOOP " + resultSetName; //$NON-NLS-1$
    }

    public PlanNode getDescriptionProperties() {
        PlanNode props = new PlanNode("LOOP"); //$NON-NLS-1$
        props.addProperty(PROP_RESULT_SET, this.resultSetName);          
        props.addProperty(PROP_PROGRAM, this.blockProgram.getDescriptionProperties());          
        return props;
    }
View Full Code Here

        super.process(env);
        env.incrementProgramCounter();
    }

    public PlanNode getDescriptionProperties() {
        return new PlanNode("BREAK"); //$NON-NLS-1$
    }
View Full Code Here

TOP

Related Classes of org.teiid.client.plan.PlanNode

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.