You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
13 lines
314 B
SQL
13 lines
314 B
SQL
drop table if exists nullif_tbl;
|
|
drop table if exists nullif_tbl_my;
|
|
|
|
CREATE TABLE `nullif_tbl` (
|
|
`col1` char(20) DEFAULT NULL,
|
|
`col2` char(200) DEFAULT NULL
|
|
) ENGINE=InfiniDB DEFAULT CHARSET=utf8;
|
|
|
|
CREATE TABLE `nullif_tbl_my` (
|
|
`col1` char(20) DEFAULT NULL,
|
|
`col2` char(200) DEFAULT NULL
|
|
) CHARSET=utf8;
|