1
0
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:
Andrew Hutchings
2019-08-09 11:51:55 +01:00
parent a1d1bd7392
commit 7b006b6e74
7 changed files with 9 additions and 80 deletions

View File

@ -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';