Hi, Sorry I can't reproduce the problem with the newest version of H2. What version do you use? Could you try again with the newest version? I think there were bugs related to casting values. My test case:
drop all objects; CREATE table timedata(dtkey INT not null, dtblob BLOB(500k), PRIMARY KEY(dtkey)); insert into timedata select x, null from system_range(1, 1000); insert into timedata select x, null from system_range(1273940000, 1273940010); insert into timedata select x, null from system_range(9223372036854775807, 9223372036854776807); -- fails SELECT * FROM timedata WHERE dtkey>1273940000 AND dtkey<9223372036854775807; -- 10 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.
