Package org.teiid.query.processor.proc

Examples of org.teiid.query.processor.proc.AssignmentInstruction


    Object instruction = null;
    switch(stmtType) {
      case Statement.TYPE_ASSIGNMENT:
            case Statement.TYPE_DECLARE:
            {
                AssignmentInstruction assignInstr = new AssignmentInstruction();
                instruction = assignInstr;
               
                AssignmentStatement assignStmt = (AssignmentStatement)statement;
               
                assignInstr.setVariable(assignStmt.getVariable());
               
        Expression asigExpr = assignStmt.getExpression();
                assignInstr.setExpression(asigExpr);
                if(debug) {
                  analysisRecord.println("\tASSIGNMENT\n" + statement); //$NON-NLS-1$
                }
        break;
            }
View Full Code Here

TOP

Related Classes of org.teiid.query.processor.proc.AssignmentInstruction

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.