mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge branch '10.6' into '10.11'
This commit is contained in:
@@ -3445,6 +3445,20 @@ drop table t;
|
||||
create table t (a int) with system versioning partition by system_time partitions 3;
|
||||
ERROR HY000: Maybe missing parameters: no rotation condition for multiple HISTORY partitions.
|
||||
#
|
||||
# MDEV-36115 InnoDB: assertion: node->pcur->rel_pos == BTR_PCUR_ON
|
||||
# in row_update_for_mysql
|
||||
#
|
||||
create table t (a int key) engine=innodb
|
||||
with system versioning
|
||||
partition by key() partitions 3;
|
||||
start transaction;
|
||||
insert into t values (1),(2),(3),(4),(5),(6),(7),(8);
|
||||
set timestamp=+1;
|
||||
delete from t;
|
||||
insert into t values (1),(2);
|
||||
DELETE from t;
|
||||
drop table t;
|
||||
#
|
||||
# End of 10.5 tests
|
||||
#
|
||||
#
|
||||
|
Reference in New Issue
Block a user