1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test299/sql/char_create.sql
2016-01-06 14:08:59 -06:00

22 lines
581 B
SQL

drop table if exists char_tbl;
drop table if exists char_tbl_my;
CREATE TABLE `char_tbl` (
`col1` char(200) DEFAULT NULL,
`col2` char(200) DEFAULT NULL,
`col3` char(200) DEFAULT NULL,
`col4` char(200) DEFAULT NULL,
`col5` char(200) DEFAULT NULL,
`col6` char(200) DEFAULT NULL
) ENGINE=InfiniDB DEFAULT CHARSET=utf8;
CREATE TABLE `char_tbl_my` (
`col1` char(200) DEFAULT NULL,
`col2` char(200) DEFAULT NULL,
`col3` char(200) DEFAULT NULL,
`col4` char(200) DEFAULT NULL,
`col5` char(200) DEFAULT NULL,
`col6` char(200) DEFAULT NULL
) DEFAULT CHARSET=utf8;