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 FROM
articles_hash_mx articles_hash_mx
GROUP BY GROUP BY
author_id; author_id
ORDER BY c;
c c
--- ---
4 4

View File

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

View File

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

View File

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