Commit 78d2430a authored by Eugene Kosov's avatar Eugene Kosov Committed by GitHub

Tests: VTMD + modify column

parent a49239b5
......@@ -265,6 +265,16 @@ A_start B_end name C_archive_name
1 0 other_name t1_
1 0 t1 t1_
1 1 t2 NULL
create or replace table t3 (x int) with system versioning;
alter table t3 change x x bigint;
alter table t3 change x x bigint after sys_trx_start;
call check_vtmd('t3_vtmd');
@start > 0 and @start < @inf
1
A_start B_end name C_archive_name
1 0 t3 t3_
1 0 t3 t3_
1 1 t3 NULL
drop database db0;
drop database db1;
drop database test;
......
......@@ -155,6 +155,11 @@ use test;
show tables;
call check_vtmd('t2_vtmd');
create or replace table t3 (x int) with system versioning;
alter table t3 change x x bigint;
alter table t3 change x x bigint after sys_trx_start;
call check_vtmd('t3_vtmd');
drop database db0;
drop database db1;
drop database test;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment