1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Merge pull request #2406 from tntnatbry/MCOL-5021-dev

MCOL-5021 AUX column implementation to improve DELETE performance.
This commit is contained in:
Roman Nozdrin
2022-08-15 19:03:42 +03:00
committed by GitHub
54 changed files with 40509 additions and 39064 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;