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
23 lines
503 B
Plaintext
23 lines
503 B
Plaintext
--source ../include/have_columnstore.inc
|
|
--source ../include/detect_no_maxscale.inc
|
|
|
|
--disable_warnings
|
|
DROP DATABASE IF EXISTS MCOL5744;
|
|
--enable_warnings
|
|
|
|
CREATE DATABASE MCOL5744;
|
|
|
|
SET old_mode='';
|
|
|
|
CREATE TABLE t(x text CHARACTER SET utf8 COLLATE utf8_general_ci) ENGINE=COLUMNSTORE;
|
|
SHOW CREATE TABLE t;
|
|
DROP TABLE t;
|
|
|
|
SET old_mode='UTF8_IS_UTF8MB3';
|
|
|
|
CREATE TABLE t(x text CHARACTER SET utf8 COLLATE utf8_general_ci) ENGINE=COLUMNSTORE;
|
|
SHOW CREATE TABLE t;
|
|
DROP TABLE t;
|
|
|
|
DROP DATABASE MCOL5744;
|