You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-25 20:23:16 +03:00
13 lines
304 B
Plaintext
13 lines
304 B
Plaintext
#
|
|
# Test case migrated from regression test suite:
|
|
# queries/working_tpch1/group/q4.8.5.sql
|
|
#
|
|
# Author: Susil, susil.behera@mariadb.com
|
|
#
|
|
|
|
-- source ../include/have_columnstore.inc
|
|
|
|
USE tpch1;
|
|
|
|
Select l_quantity, count(*) from lineitem where l_orderkey < 1000000 group by l_quantity order by l_quantity;
|