Hi,

Thanks a lot! I can reproduce the problem now, and I found a simpler test case:

drop table test;
create table test(x int, y int);
insert into test values(1, 1), (1, 2);
select * from test where x=1 and y<2;
create index test_x_y on test (x, y desc);
select * from test where x=1 and y<2;

This bug will be fixed in the next release.

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to