Ejemplo n.º 1
0
 /**
  * Accessor for flag marking the plan as guaranteeing an identical result/effect when "replayed"
  * against the same database state, such as during replication or CL recovery.
  *
  * @return the corresponding value from the first fragment
  */
 public boolean isOrderDeterministic() {
   if (m_statementIsOrderDeterministic) {
     return true;
   }
   return rootPlanGraph.isOrderDeterministic();
 }