282283284285286287288289290
public void rebuildSchema(LogicalPlan lp) throws VisitorException { SchemaRemover sr = new SchemaRemover(lp); sr.visit(); SchemaCalculator sc = new SchemaCalculator(lp); sc.visit(); } }
287288289290291292293294295