mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '11.6' into 11.7
This commit is contained in:
@@ -228,6 +228,19 @@ DROP TABLE t1;
|
||||
|
||||
--echo # End of 10.4 tests
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-33470 Unique hash index is broken on DML for system-versioned table
|
||||
--echo #
|
||||
create or replace table t (
|
||||
c int, unique (c) using hash)
|
||||
with system versioning;
|
||||
insert into t values (0);
|
||||
delete from t;
|
||||
delete history from t;
|
||||
drop table t;
|
||||
|
||||
--echo # End of 10.5 tests
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-17554 Auto-create new partition for system versioned tables with history partitioned by INTERVAL/LIMIT
|
||||
--echo #
|
||||
|
@@ -59,4 +59,19 @@ drop table t1;
|
||||
--remove_files_wildcard $TMP *.txt
|
||||
--remove_files_wildcard $TMP *.sql
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-31297 Create table as select on system versioned tables do not work consistently on replication
|
||||
--echo #
|
||||
--connection master
|
||||
create table t engine=innodb with system versioning as select 1 as i;
|
||||
show create table t;
|
||||
select * from t;
|
||||
|
||||
--sync_slave_with_master
|
||||
show create table t;
|
||||
select * from t;
|
||||
|
||||
--connection master
|
||||
drop table t;
|
||||
|
||||
--source rpl_common.inc
|
||||
|
Reference in New Issue
Block a user