1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +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

@ -301,6 +301,13 @@ select *, sys_trx_end = 18446744073709551615 as current from t1 for system_time
x y current
2 2 1
1 1 0
create or replace table t1 (i int) with system versioning engine innodb;
insert into t1 values (1),(2);
insert into t1 (sys_trx_start) select sys_trx_end from t1;
ERROR HY000: Column 'sys_trx_start' is not updatable
insert into t1 (sys_trx_start, sys_trx_end) values (DEFAULT, 1);
ERROR HY000: Column 'sys_trx_end' is not updatable
insert into t1 (sys_trx_start, sys_trx_end) values (DEFAULT, DEFAULT);
drop table t1;
drop table t2;
drop procedure test_01;