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
MCOL-104 Remove InfiniDB Engine
Remove the InfiniDB engine which is a duplicate of the ColumnStore engine.
This commit is contained in:
@ -3,6 +3,9 @@ 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,
|
||||
@ -13,7 +16,7 @@ create table if not exists systable (tablename varchar(128),
|
||||
numofrows int,
|
||||
avgrowlen int,
|
||||
numofblocks int,
|
||||
autoincrement int) engine=infinidb comment='SCHEMA SYNC ONLY';
|
||||
autoincrement int) engine=columnstore comment='SCHEMA SYNC ONLY';
|
||||
|
||||
-- SYSCOLUMN
|
||||
create table if not exists syscolumn (`schema` varchar(128),
|
||||
@ -37,4 +40,4 @@ create table if not exists syscolumn (`schema` varchar(128),
|
||||
minvalue varchar(64),
|
||||
`maxvalue` varchar(64),
|
||||
compressiontype integer,
|
||||
nextvalue bigint) engine=infinidb comment='SCHEMA SYNC ONLY';
|
||||
nextvalue bigint) engine=columnstore comment='SCHEMA SYNC ONLY';
|
||||
|
Reference in New Issue
Block a user