Hi,
I suspect there is an issue with 1.4.182 using escape'' (I have been using escape'' with the view to disabling the escaping of backslash)
// these first 3 queries return count = 10 which is expected
int
count0 = select
t0.id c0 from uuone t0 where
t0.name like ? order by
t0.name"; -- bind "testBLWCH%"
int
count1 = select
t0.id c0 from uuone t0 where
t0.name like ? escape'x' order by
t0.name"; -- bind "testBLWCH%"
int
count2 = select
t0.id c0 from uuone t0 where
t0.name like ? escape'/' order by
t0.name"; -- bind "testBLWCH%"
// this next query returns count3 = 0 using version 1.4.182 ... and 10 as expected with version 1.3.153
int
count3 = select
t0.id c0 from uuone t0 where
t0.name like ? escape'' order by
t0.name"; -- bind "testBLWCH%"
With 1.4.182 count3 = 0 ... and all the other counts = 10 which is the expected value
With 1.3.153 count3 = 10 ... which is the result I was expecting.
This is not a major drama for me, I'll swap to not using any escape clause by default ... and that should be ok for me (so backslash will escape in my H2 query like clauses by default).
Cheers, Rob.