mirror of
https://github.com/MariaDB/server.git
synced 2026-04-19 06:45:32 +02:00
Merge 10.3 into 10.4
This commit is contained in:
commit
c0743e4b00
3 changed files with 22 additions and 0 deletions
|
|
@ -142,5 +142,16 @@ with system versioning;
|
|||
insert into t1 (f) values ('a'), ('b'), ('c'), ('d'), ('e'), ('f'), ('g'), ('h');
|
||||
delete from t1;
|
||||
delete history from t1;
|
||||
drop table t1;
|
||||
#
|
||||
# MDEV-20186 Wrong result or Assertion on INSERT after DELETE HISTORY
|
||||
#
|
||||
create or replace table t1 (a int check (a > 0)) with system versioning;
|
||||
delete history from t1;
|
||||
insert into t1 values (1);
|
||||
select * from t1;
|
||||
a
|
||||
1
|
||||
drop table t1;
|
||||
drop database test;
|
||||
create database test;
|
||||
|
|
|
|||
|
|
@ -158,6 +158,16 @@ with system versioning;
|
|||
insert into t1 (f) values ('a'), ('b'), ('c'), ('d'), ('e'), ('f'), ('g'), ('h');
|
||||
delete from t1;
|
||||
delete history from t1;
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-20186 Wrong result or Assertion on INSERT after DELETE HISTORY
|
||||
--echo #
|
||||
create or replace table t1 (a int check (a > 0)) with system versioning;
|
||||
delete history from t1;
|
||||
insert into t1 values (1);
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
drop database test;
|
||||
create database test;
|
||||
|
|
|
|||
|
|
@ -5064,6 +5064,7 @@ void TABLE::init(THD *thd, TABLE_LIST *tl)
|
|||
range_rowid_filter_cost_info= NULL;
|
||||
update_handler= NULL;
|
||||
check_unique_buf= NULL;
|
||||
vers_write= s->versioned;
|
||||
#ifdef HAVE_REPLICATION
|
||||
/* used in RBR Triggers */
|
||||
master_had_triggers= 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue