You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
21 lines
388 B
Plaintext
21 lines
388 B
Plaintext
DROP DATABASE IF EXISTS mcol5164rep;
|
|
CREATE DATABASE mcol5164rep;
|
|
USE mcol5164rep;
|
|
CREATE TABLE t1(col1 INT, col2 VARCHAR(64)) ENGINE=Columnstore;
|
|
SELECT * FROM t1;
|
|
col1 col2
|
|
11 test11-good
|
|
Rejected rows:
|
|
0,test0,wrong
|
|
1,test1,wrong
|
|
2,test2,wrong
|
|
3,test3,wrong
|
|
4,test4,wrong
|
|
5,test5,wrong
|
|
6,test6,wrong
|
|
7,test7,wrong
|
|
8,test8,wrong
|
|
9,test9,wrong
|
|
10,test10,wrong
|
|
DROP DATABASE mcol5164rep;
|