1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4789 mcs51_cpimport_select_from is not deterministic

Testing script was left in.
This commit is contained in:
David Hall
2021-07-02 09:21:31 -05:00
parent 6ae64bc750
commit 20d90c6293

View File

@ -29,7 +29,7 @@ CREATE TABLE mcs51_db2.t_mcs (col1 INT, col2 INT, col3 CHAR(8)) ENGINE=Columnsto
#Bulk load deom Innodb table
SELECT COUNT(*) FROM mcs51_db1.t_innodb;
--exec $MYSQL -q -e 'SELECT * FROM mcs51_db1.t_innodb;' -N | $MCS_CPIMPORT -s '\t' mcs51_db2 t_mcs > /home/calpont/test.txt
--exec $MYSQL -q -e 'SELECT * FROM mcs51_db1.t_innodb;' -N | $MCS_CPIMPORT -s '\t' mcs51_db2 t_mcs >/dev/null
SELECT * FROM mcs51_db2.t_mcs ORDER BY col1, col2;
SELECT COUNT(*) FROM mcs51_db2.t_mcs;
TRUNCATE mcs51_db2.t_mcs;