示例#1
0
 public TupleId getOutputTupleId() {
   return outputTupleDesc_.getId();
 }
示例#2
0
 /** Asserts that all ordering exprs are bound by the sort tuple. */
 public void checkConsistency() {
   for (Expr orderingExpr : orderingExprs_) {
     Preconditions.checkState(orderingExpr.isBound(sortTupleDesc_.getId()));
   }
 }
示例#3
0
 public TupleId getIntermediateTupleId() {
   return intermediateTupleDesc_.getId();
 }