Hello,
I am using H2 Version 1.4.193 and I am creating a Pluggable / User-Defined Table with ENGINE "..."
Just to sum up it is a Table that gathers data from a REST Endpoint.
I have implemented the Table, Index and Cursor everything is working in order
and simple queries like SELECT * FROM TableName work as expected.
The problem is when I send a SQL query to sort by a column of data type DATE
in ascending order the data returned is not correctly sorted
In descending order works fine!
SELECT * FROM TableName ORDER BY DateColumn ASC
Sorting asc and desc in Numeric Columns works fine too.
Is this a possible bug on the H2 code? or maybe I forgot to implement something?
Any ideas will be appreciated. Thanks.
Pedro