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:
committed by
Aleksey Midenkov
parent
7069071d7d
commit
157150cfcf
@ -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
|
||||
|
Reference in New Issue
Block a user