399400401402403404405406407408409
public void unsetSchema() throws VisitorException{ for(LogicalOperator input: getInputs()) { for(LogicalPlan plan: mGroupByPlans.get(input)) { SchemaRemover sr = new SchemaRemover(plan); sr.visit(); } } super.unsetSchema(); }
235236237238239240241242243244245
for(LogicalOperator input: getInputs()) { Collection<LogicalPlan> joinPlans = mJoinPlans.get(input); if(joinPlans!=null) for(LogicalPlan plan : joinPlans) { SchemaRemover sr = new SchemaRemover(plan); sr.visit(); } } super.unsetSchema(); }
428429430431432433434435436437438
} public void unsetSchema() throws VisitorException{ for(LogicalPlan plan: mForEachPlans) { SchemaRemover sr = new SchemaRemover(plan); sr.visit(); } super.unsetSchema(); mSchemaPlanMapping = new ArrayList<LogicalPlan>(); }
121122123124125126127128129130131
return DataType.BAG ; } public void unsetSchema() throws VisitorException{ SchemaRemover sr = new SchemaRemover(mCondPlan); sr.visit(); super.unsetSchema(); } /** * @see org.apache.pig.impl.plan.Operator#clone()
119120121122123124125126127128129
return DataType.BAG ; } public void unsetSchema() throws VisitorException{ SchemaRemover sr = new SchemaRemover(mComparisonPlan); sr.visit(); super.unsetSchema(); } /** * @see org.apache.pig.impl.plan.Operator#clone()
427428429430431432433434435436437
398399400401402403404405406407408
123124125126127128129130131132133