Examples of reattachFragment()


Examples of org.voltdb.plannodes.AbstractPlanNode.reattachFragment()

            }
            List<AbstractPlanNode> pnList = s_singleton.compileWithJoinOrderToFragments(query, joinOrder);
            AbstractPlanNode pn = pnList.get(0);
            if( pnList.size() == 2 ){//multi partition query plan
                assert( pnList.get(1) instanceof SendPlanNode );
                if( ! pn.reattachFragment( ( SendPlanNode) pnList.get(1) ) ) {
                    System.err.println( "Receive plan node not found in reattachFragment." );
                }
            }
            writePlanToFile(pn, m_workPath, config+".plan"+i, m_stmts.get(i) );
            if (isSave) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.