1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00
Files
mariadb-columnstore-engine/mtr/csinternal/devregression/t/mcs7048_regression_bug3076.test
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02:00

27 lines
1.0 KiB
Plaintext

# -------------------------------------------------------------- #
# Test case migrated from regression test suite: bug3076.sql
#
# Author: Daniel Lee, daniel.lee@mariadb.com
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
#
USE tpch1;
#
select count(*), o_orderstatus from orders group by o_orderstatus order by count(*) desc, 2;
select count(*), o_orderstatus from orders group by o_orderstatus order by 1 desc, 2;
select count(*) cnt, o_orderstatus from orders group by o_orderstatus order by cnt desc, 2;
select count(o_orderstatus), o_orderstatus from orders group by o_orderstatus order by count(o_orderstatus) desc, 2;
select count(o_orderstatus), o_orderstatus from orders group by o_orderstatus order by 1, 2 desc;
select count(distinct o_orderstatus), o_orderstatus from orders group by o_orderstatus order by 1, 2 desc;
select count(distinct o_orderstatus), o_orderstatus from orders group by o_orderstatus order by count(distinct o_orderstatus), 2 desc;
#