Package org.teiid.query.processor.relational

Examples of org.teiid.query.processor.relational.InsertPlanExecutionNode


                       
                        Object groupID = intoGroup.getMetadataID();
                        Object modelID = metadata.getModelID(groupID);
                        String modelName = metadata.getFullName(modelID);
                        if (metadata.isVirtualGroup(groupID)) {
                          InsertPlanExecutionNode ipen = new InsertPlanExecutionNode(getID(), metadata);
                          ipen.setProcessorPlan((ProcessorPlan)node.getFirstChild().getProperty(Info.PROCESSOR_PLAN));
                          ipen.setReferences(insert.getValues());
                          processNode = ipen;
                        } else {
                          ProjectIntoNode pinode = new ProjectIntoNode(getID());
                          pinode.setIntoGroup(intoGroup);
                          pinode.setIntoElements(allIntoElements);
View Full Code Here

TOP

Related Classes of org.teiid.query.processor.relational.InsertPlanExecutionNode

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.