You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
13 lines
268 B
SQL
Executable File
13 lines
268 B
SQL
Executable File
# create nation table
|
|
#
|
|
--disable_warnings
|
|
drop table if exists nation;
|
|
--enable_warnings
|
|
create table nation (
|
|
n_nationkey int,
|
|
n_name char (25),
|
|
n_regionkey int,
|
|
n_comment varchar (152)
|
|
) engine=columnstore;
|
|
SHOW CREATE TABLE nation;
|