Interface OptimizerPostPass
-
- All Known Implementing Classes:
JavaApiPostPass
public interface OptimizerPostPassInterface for visitors that process the optimizer's plan. Typical post processing applications are schema finalization or the generation/parameterization of utilities for the actual data model.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostPass(OptimizedPlan plan)Central post processing function.
-
-
-
Method Detail
-
postPass
void postPass(OptimizedPlan plan)
Central post processing function. Invoked by the optimizer after the best plan has been determined.- Parameters:
plan- The plan to be post processed.
-
-