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

MCOL-1449. Fix the regression caused by changes in idborderby code for MCOL-1052. Add LIMIT and OFFSET support for group by handler.

This commit is contained in:
Roman Nozdrin
2018-05-23 15:06:16 +03:00
committed by Roman Nozdrin
parent e79daac8a9
commit 1a1f3ea506
4 changed files with 46 additions and 16 deletions

View File

@ -59,7 +59,8 @@ class IdbCompare;
struct IdbSortSpec
{
int fIndex;
int fAsc; // <ordering specification> ::= ASC | DESC
// TODO There are three ordering specs since 10.2
int fAsc; // <ordering specification> ::= ASC | DESC
int fNf; // <null ordering> ::= NULLS FIRST | NULLS LAST
IdbSortSpec() : fIndex(-1), fAsc(1), fNf(1) {}