mirror of
https://github.com/MariaDB/server.git
synced 2026-04-17 05:45:33 +02:00
Merge 10.4 into 10.5
This commit is contained in:
commit
ea847cbeaf
49 changed files with 1618 additions and 1037 deletions
|
|
@ -1123,5 +1123,12 @@ CREATE OR REPLACE TABLE t1 (pk INT AUTO_INCREMENT, a INT, KEY(pk)) ENGINE=myisam
|
|||
INSERT INTO t1 VALUES (1,1),(2,2);
|
||||
UPDATE t1 SET pk = 0;
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# MDEV-21027 Assertion `part_share->auto_inc_initialized || !can_use_for_auto_inc_init()'
|
||||
# ha_partition::set_auto_increment_if_higher
|
||||
#
|
||||
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY) ENGINE='TokuDB' PARTITION BY HASH (a) PARTITIONS 3;
|
||||
REPLACE INTO t1 PARTITION (p0) VALUES (3);
|
||||
DROP TABLE t1;
|
||||
##############################################################################
|
||||
SET GLOBAL tokudb_prelock_empty = @tokudb_prelock_empty_saved;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue