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

MDEV-14631 Assertion `!sys_trx_start && !sys_trx_end' failed in crete_tmp_table

SQL: remove unneeded assertion
SQL: disallow set sys_trx fields in INSERT ... SELECT

Fixes by @midenok.
This commit is contained in:
Eugene Kosov
2017-12-12 22:33:49 +03:00
committed by Aleksey Midenkov
parent c66a20b494
commit 717f274b87
7 changed files with 47 additions and 40 deletions

View File

@ -203,6 +203,14 @@ insert into t1 values (1, null);
update t1 set x= x + 1;
select *, sys_trx_end = 18446744073709551615 as current from t1 for system_time all;
create or replace table t1 (i int) with system versioning engine innodb;
insert into t1 values (1),(2);
--error ER_NONUPDATEABLE_COLUMN
insert into t1 (sys_trx_start) select sys_trx_end from t1;
--error ER_NONUPDATEABLE_COLUMN
insert into t1 (sys_trx_start, sys_trx_end) values (DEFAULT, 1);
insert into t1 (sys_trx_start, sys_trx_end) values (DEFAULT, DEFAULT);
drop table t1;
drop table t2;