1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

IB: TRT is not updated on ADD SYSTEM VERSIONING [fixes #413]

This commit is contained in:
Eugene Kosov
2017-12-20 22:46:28 +03:00
committed by GitHub
parent 6e530d4df5
commit acdfacee75
8 changed files with 135 additions and 19 deletions

View File

@ -165,20 +165,11 @@ alter table t
call verify_vtq;
show create table t;
## FIXME: #413 TRT is not updated on ADD SYSTEM VERSIONING
# alter table t drop column trx_start, drop column trx_end;
alter table t drop column trx_start, drop column trx_end;
# call verify_vtq;
# alter table t drop system versioning, algorithm=copy;
# call verify_vtq;
create or replace table t(
a int
) engine=innodb;
insert into t values (1);
## FIXME END
call verify_vtq;
alter table t drop system versioning, algorithm=copy;
call verify_vtq;
alter table t add system versioning, algorithm=copy;
call verify_vtq;