* The priority was wrong. Sql2o would try to set the field first, and afterwards the setter. The priority should be
* the setter first and the field after.
*/
@Test public void testSetterPriority(){
Sql2o sql2o = new Sql2o(url, user, pass);
Issue1Pojo pojo = sql2o.createQuery("select 1 val from (values(0))").executeAndFetchFirst(Issue1Pojo.class);
assertEquals(2, pojo.val);
}