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