mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-23 07:05:36 +03:00
Also fixing the problem with missing UDFs for the affected tests. (see MCOL-4659 for details): When mtr runs without --remote, the UDFs must be installed inside the test using CREATE FUNCTION. Note, there are still more tests left with missing UDFs. They'll be fixed separately.
19 lines
555 B
Plaintext
19 lines
555 B
Plaintext
DROP DATABASE IF EXISTS mcs216_db;
|
|
CREATE DATABASE mcs216_db;
|
|
USE mcs216_db;
|
|
CREATE TABLE t1(col1 INT, col2 INT, col3 CHAR(8)) ENGINE=Columnstore;
|
|
LOAD DATA LOCAL infile 'MTR_SUITE_DIR/../std_data/100Krows.dat' INTO TABLE t1 FIELDS TERMINATED BY '|';;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
100001
|
|
SELECT idbSegmentDir(col1) FROM t1 WHERE col1=2 LIMIT 1;
|
|
idbSegmentDir(col1)
|
|
0
|
|
SELECT idbSegmentDir(col2) FROM t1 WHERE col1=2 LIMIT 1;
|
|
idbSegmentDir(col2)
|
|
0
|
|
SELECT idbSegmentDir(col3) FROM t1 WHERE col1=2 LIMIT 1;
|
|
idbSegmentDir(col3)
|
|
0
|
|
DROP DATABASE mcs216_db;
|