mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@@ -251,6 +251,15 @@ c1
|
||||
1984
|
||||
3331
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# MDEV-33979 Disallow bulk insert operation during
|
||||
# partition update statement
|
||||
#
|
||||
CREATE TABLE t1(a INT KEY)ENGINE=InnoDB
|
||||
PARTITION BY KEY(a) PARTITIONS 16;
|
||||
INSERT INTO t1 VALUES(1);
|
||||
UPDATE t1 SET a = 2 WHERE a = 1;
|
||||
DROP TABLE t1;
|
||||
# End of 10.6 tests
|
||||
#
|
||||
# MDEV-26947 UNIQUE column checks fail in InnoDB resulting
|
||||
|
Reference in New Issue
Block a user