Hi,

I can reproduce the problem. My test case is:

drop table test;
create table test(x int);
insert into test values(1), (2);
select * from (select rownum() r, x from test) where r in (1,2);
select * from (select rownum() r, x from test) where r=1 or r=2;
select * from (select rownum() r, x from test) where r>=1 and r<=2;
select * from (select rownum() r, x from test) where r between 1 and 2;

I will try to fix the problem.

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