@Test
public void testParseWhere_2() {
ParseResult actual = GqlQuery.parse("SELECT * from a where a = 1 and b <= '3'");
ParseResult expected = new ParseResult().setSelect(new Select(false)).setFrom(new From("a")).setWhere(
new Where().withCondition(new Condition("a", FilterOperator.EQUAL, new DecimalEvaluator("1")))
.withCondition(new Condition("b", FilterOperator.LESS_THAN_OR_EQUAL, new StringEvaluator("'3'")))
);
assertEquals(expected, actual);
}