You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
skip bad rows report test on multinode setup
This commit is contained in:
committed by
Leonid Fedorov
parent
1ce46b5e0b
commit
c30b490027
15
mysql-test/columnstore/basic/r/MCOL-5164-max-errors.result
Normal file
15
mysql-test/columnstore/basic/r/MCOL-5164-max-errors.result
Normal file
@@ -0,0 +1,15 @@
|
||||
DROP DATABASE IF EXISTS mcol5164;
|
||||
CREATE DATABASE mcol5164;
|
||||
USE mcol5164;
|
||||
CREATE TABLE t1(col1 INT, col2 VARCHAR(64)) ENGINE=Columnstore;
|
||||
SELECT * FROM t1;
|
||||
col1 col2
|
||||
TRUNCATE t1;
|
||||
SELECT * FROM t1;
|
||||
col1 col2
|
||||
11 test11-good
|
||||
TRUNCATE t1;
|
||||
SELECT * FROM t1;
|
||||
col1 col2
|
||||
11 test11-good
|
||||
DROP DATABASE mcol5164;
|
Reference in New Issue
Block a user