1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Merge pull request #2406 from tntnatbry/MCOL-5021-dev

MCOL-5021 AUX column implementation to improve DELETE performance.
This commit is contained in:
Roman Nozdrin
2022-08-15 19:03:42 +03:00
committed by GitHub
54 changed files with 40509 additions and 39064 deletions

View File

@ -16,7 +16,8 @@ create table if not exists systable (tablename varchar(128),
numofrows int,
avgrowlen int,
numofblocks int,
autoincrement int) engine=columnstore comment='SCHEMA SYNC ONLY';
autoincrement int,
auxcolumnoid int not null default 0) engine=columnstore comment='SCHEMA SYNC ONLY';
-- SYSCOLUMN
create table if not exists syscolumn (`schema` varchar(128),