assertEquals("where (1=1) BOY b", dbc.generateQuery());
dbc = sql()._("where")._().match("BadBoy", bb).table(bb, null);
assertEquals("where (1=1) BOY", dbc.generateQuery());
dbc = sql()._("where ").match("b", bb).table(bb, "b");
assertEquals("where (1=1) BOY b", dbc.generateQuery());
bb.ajdi = Integer.valueOf(3);
dbc = sql()._("where ").match("BadBoy", bb)._(" ").table(bb, null);
assertEquals("where (BOY.ID=:badBoy.ajdi) BOY", dbc.generateQuery());
dbc = sql()._("where ").match("b", bb)._(" ").table(bb, "b");