Hi,
I am using H2 1.4.191 (Pulled in via Spring Boot 1.3.5). I wanted to try to upgrade to Spring Boot 1.3.8 (which uses H2 1.4.192 by default), but one of my unit tests suddenly fails. I managed to make it work again by explicitly going back to H2 1.4.191 with Spring Boot 1.3.8. If I use H2 1.4.192 with Spring Boot 1.3.5, then the test also failed. So something must have changed in 1.4.192 which makes it fail.
I am using Spring Data and the unit test uses:
jdbcTemplate.queryForObject("SELECT image_id FROM game", Object.class)
This returns a non-null value using 1.4.191 and a null value using 1.4.192.
I know this is very little info to go by, but maybe it rings a bell with somebody?
regards,
Wim