1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2026-01-06 08:21:10 +03:00

MCOL-5021 Update MTR tests to reflect changes introduced by this feature.

This commit is contained in:
Gagan Goel
2022-06-21 17:30:41 -04:00
parent 9b6d3c3870
commit 0818b95caa
8 changed files with 38777 additions and 38777 deletions

View File

@@ -20,7 +20,7 @@ CREATE TABLE t1(col1 INT, col2 INT, col3 CHAR(8)) ENGINE=Columnstore;
#Valid data and table
--exec cat $MTR_SUITE_DIR/../std_data/100Krows.dat | $MCS_CPIMPORT mcs50_db t1 >/dev/null
SELECT * FROM t1 ORDER BY col1;
SELECT * FROM t1 ORDER BY col1, col2, col3;
SELECT COUNT(*) FROM t1;
TRUNCATE t1;