POProject p3 = GenPhyOp.exprProject(1);
ConstantExpression c = GenPhyOp.exprConst();
c.setValue(new Integer(1));
EqualToExpr eq = GenPhyOp.compEqualToExpr(p3, c, DataType.INTEGER);
POAnd and = GenPhyOp.compAndExpr(gt, eq);
PhysicalPlan ip = new PhysicalPlan();
ip.add(p1);
ip.add(c2);
ip.add(gt);