* the logical filter operator that has to be visited
* @throws VisitorException
*/
protected void visit(LOFilter filter) throws VisitorException {
// Visit the condition for the filter followed by the input
PlanWalker w = new DependencyOrderWalker(filter.getComparisonPlan());
pushWalker(w);
for(LogicalOperator logicalOp: filter.getComparisonPlan().getRoots()) {
logicalOp.visit(this);
}
popWalker();