1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Handle comparison of two negative TIME values properly in the ORDER BY clause.

This commit is contained in:
Gagan Goel
2019-10-08 10:23:56 -04:00
parent 1af0248ae5
commit 6207d6137d
2 changed files with 65 additions and 1 deletions

View File

@ -138,6 +138,15 @@ public:
};
class TimeCompare : public Compare
{
public:
TimeCompare(const IdbSortSpec& spec) : Compare(spec) {}
int operator()(IdbCompare*, rowgroup::Row::Pointer, rowgroup::Row::Pointer);
};
class CompareRule
{
public: