Fix failing regressions with order by

pull/2079/head v7.2.1
Metin Doslu 2018-02-06 16:00:46 +02:00
parent ade091d95c
commit 18b0feb4f8
4 changed files with 8 additions and 4 deletions

View File

@ -1204,7 +1204,8 @@ SELECT
FROM
articles_hash_mx
GROUP BY
author_id;
author_id
ORDER BY c;
c
---
4

View File

@ -1902,7 +1902,8 @@ SELECT
FROM
articles_hash
GROUP BY
author_id;
author_id
ORDER BY c;
c
---
4

View File

@ -529,7 +529,8 @@ SELECT
FROM
articles_hash_mx
GROUP BY
author_id;
author_id
ORDER BY c;
-- queries inside transactions can be router plannable
BEGIN;

View File

@ -911,7 +911,8 @@ SELECT
FROM
articles_hash
GROUP BY
author_id;
author_id
ORDER BY c;
-- queries inside transactions can be router plannable
BEGIN;