@Test
public void test_gt_like() {
Condition c = Cnd.where("id", ">", 45).and("name", "LIKE", "%ry%");
String exp = "WHERE wid>45 AND wname LIKE '%ry%'";
assertEquals(exp, c.toSql(en).trim());
}
@Test
public void test_bracket() {
Condition c = Cnd.where(Cnd.exps("id", ">", 45)).and("name",