for (int i = 0; i < nullFlags.length; i++) {
// Build the inner expression
POProject p1 = GenPhyOp.exprProject(0);
ConstantExpression c2 = GenPhyOp.exprConst();
c2.setValue(new Integer(0));
GreaterThanExpr gt = GenPhyOp.compGreaterThanExpr(p1, c2, DataType.INTEGER);
POProject p3 = GenPhyOp.exprProject(1);
ConstantExpression c = GenPhyOp.exprConst();
c.setValue(new Integer(1));
EqualToExpr eq = GenPhyOp.compEqualToExpr(p3, c, DataType.INTEGER);