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
7 lines
193 B
SQL
7 lines
193 B
SQL
create database if not exists dmlc;
|
|
use dmlc;
|
|
|
|
drop table if exists test206;
|
|
|
|
create table if not exists test206 (pm tinyint, batch smallint, c1 int, c2 bigint, c3 varchar(20))engine=infinidb;
|