You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Fix charset in MTR
This commit is contained in:
committed by
Leonid Fedorov
parent
68f60cd695
commit
38a5a7edec
5
mysql-test/columnstore/include/charset.inc
Normal file
5
mysql-test/columnstore/include/charset.inc
Normal file
@ -0,0 +1,5 @@
|
||||
--disable_query_log
|
||||
SET character_set_server = 'utf8mb3';
|
||||
SET collation_server = 'utf8mb3_general_ci';
|
||||
--enable_query_log
|
||||
|
46
mysql-test/columnstore/include/syscatalog_mysql.sql
Normal file
46
mysql-test/columnstore/include/syscatalog_mysql.sql
Normal file
@ -0,0 +1,46 @@
|
||||
--disable_query_log
|
||||
create database if not exists calpontsys;
|
||||
|
||||
use calpontsys;
|
||||
|
||||
drop table if exists systable restrict;
|
||||
drop table if exists syscolumn restrict;
|
||||
|
||||
create table if not exists systable (tablename varchar(128),
|
||||
`schema` varchar(128),
|
||||
objectid int,
|
||||
createdate date,
|
||||
lastupdate date,
|
||||
init int,
|
||||
next int,
|
||||
numofrows int,
|
||||
avgrowlen int,
|
||||
numofblocks int,
|
||||
autoincrement int,
|
||||
auxcolumnoid int not null default 0) engine=columnstore comment='SCHEMA SYNC ONLY';
|
||||
|
||||
create table if not exists syscolumn (`schema` varchar(128),
|
||||
tablename varchar(128),
|
||||
columnname varchar(128),
|
||||
objectid integer,
|
||||
dictobjectid integer,
|
||||
listobjectid integer,
|
||||
treeobjectid integer,
|
||||
datatype integer,
|
||||
columnlength integer,
|
||||
columnposition integer,
|
||||
lastupdate date,
|
||||
defaultvalue varchar(64),
|
||||
nullable integer,
|
||||
scale integer,
|
||||
prec integer,
|
||||
autoincrement char(1),
|
||||
distcount integer,
|
||||
nullcount integer,
|
||||
minvalue varchar(64),
|
||||
`maxvalue` varchar(64),
|
||||
compressiontype integer,
|
||||
nextvalue bigint,
|
||||
charsetnum int not null default 0) engine=columnstore comment='SCHEMA SYNC ONLY';
|
||||
|
||||
--enable_query_log
|
Reference in New Issue
Block a user