checkNullValues(DataType.FLOAT, new Float(1.0f));
}
@Test
public void testDoubleGt() throws Exception {
ConstantExpression lt = GenPhyOp.exprConst();
lt.setValue(new Double(1.0));
ConstantExpression rt = GenPhyOp.exprConst();
rt.setValue(new Double(0.0));
GTOrEqualToExpr g = GenPhyOp.compGTOrEqualToExpr();
g.setLhs(lt);
g.setRhs(rt);
g.setOperandType(DataType.DOUBLE);
Result r = g.getNextBoolean();