Exemplo n.º 1
0
 /** Marks all slots referenced in exprs as materialized. */
 protected void markSlotsMaterialized(Analyzer analyzer, List<Expr> exprs) {
   List<SlotId> refdIdList = Lists.newArrayList();
   for (Expr expr : exprs) {
     expr.getIds(null, refdIdList);
   }
   analyzer.getDescTbl().markSlotsMaterialized(refdIdList);
 }