You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
* feat(cpimport): MCOL-4882 add a parameter to skip header rows * chore(cpimport): MCOL-4882 Use boost::program_options to arguments parsing * feat(cpimport.bin): MCOL-4882 Add missing changes * add test * fix clang * add missing cmdline argument * fix bug * Fix double lines skipping * Fix incorrect --silent (-N) parsing * fix default --max-errors processing * fix overwriting default username * move initialization to members declaration
23 lines
361 B
Plaintext
23 lines
361 B
Plaintext
DROP DATABASE IF EXISTS mcol4882;
|
|
CREATE DATABASE mcol4882;
|
|
USE mcol4882;
|
|
CREATE TABLE t1(col1 INT, col2 VARCHAR(64)) ENGINE=Columnstore;
|
|
SELECT * FROM t1;
|
|
col1 col2
|
|
1 test1
|
|
2 test2
|
|
3 test3
|
|
TRUNCATE t1;
|
|
SELECT * FROM t1;
|
|
col1 col2
|
|
2 test2
|
|
3 test3
|
|
TRUNCATE t1;
|
|
SELECT * FROM t1;
|
|
col1 col2
|
|
3 test3
|
|
TRUNCATE t1;
|
|
SELECT * FROM t1;
|
|
col1 col2
|
|
DROP DATABASE mcol4882;
|