You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Part#3 : MCOL-4678 MTR tests fail because of /tmp and ./ with LOAD DATA
Some MTR test still failed when running without --extern Fixing the following problems: - Changing "--exec mariadb" to "--exect $MYSQL" to properly pass the socket - Changing ./suite/columnstore/std_data/ to MTR_SUITE_DIR/../std_data/ - Changing "cpimport" to $MCS_CPIMPORT. Detecting and exporting a proper $MCS_CPIMPORT in suite.pm
This commit is contained in:
@ -11,7 +11,7 @@ c_acctbal decimal(12,2),
|
||||
c_mktsegment char (10),
|
||||
c_comment varchar (117)
|
||||
) engine=columnstore;
|
||||
LOAD DATA LOCAL infile './suite/columnstore/std_data/1m_customer.tbl' INTO TABLE customer FIELDS TERMINATED BY '|';
|
||||
LOAD DATA LOCAL infile 'MTR_SUITE_DIR/../std_data/1m_customer.tbl' INTO TABLE customer FIELDS TERMINATED BY '|';;
|
||||
ALTER TABLE customer ADD COLUMN u_custkey INT UNSIGNED;
|
||||
ALTER TABLE customer ADD COLUMN u_bigcustkey BIGINT UNSIGNED;
|
||||
UPDATE customer SET u_custkey=c_custkey * c_custkey + 4294000000;
|
||||
|
Reference in New Issue
Block a user