new FrontendException(op,
"Could not retrieve LogicalExpression for LOSplitOutput " + losplitoutput, 2048));
if (currentExpr == null)
currentExpr = root;
else
currentExpr = new OrExpression(splitPlan, currentExpr, root);
}
// using De Morgan's law (!A && !B) == !(A || B)
currentExpr = new NotExpression(splitPlan, currentExpr);
op.setFilterPlan(splitPlan);
return buildOp(loc, op, alias, inputAlias, null);