1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

MDEV-14769 Temporary table can be altered into system versioning + system_versioning_alter_history has no effect

This commit is contained in:
Eugene Kosov
2017-12-29 16:28:13 +03:00
committed by Aleksey Midenkov
parent 7069071d7d
commit 157150cfcf
6 changed files with 17 additions and 7 deletions

View File

@ -364,10 +364,12 @@ alter table t1 engine=myisam;
--echo # MDEV-14692 crash in MDL_context::upgrade_shared_lock()
create or replace temporary table t (a int);
--error ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN
--error ER_VERS_TEMPORARY
alter table t change column if exists b c bigint unsigned generated always as row start;
--error ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN
--error ER_VERS_TEMPORARY
alter table t change column if exists b c bigint unsigned generated always as row end;
--error ER_VERS_TEMPORARY
alter table t add system versioning;
drop table t;
--echo # MDEV-14744 trx_id-based and transaction-based mixup in assertion