Hi, Thanks for the test case! I can reproduce the problem now with version 1.2.128, but not with the trunk. I agree it's quite unexpected if the list is not deterministic.
I think the reason is that version 1.2.128 and older use a quicksort implementation with a random pivot. The current trunk uses java.util.Arrays.sort which is stable (but unfortunately a little bit slower). So the problem will be solved 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.
