mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
merge into mysql-5.1-bugteam
This commit is contained in:
@ -8,6 +8,15 @@
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
--echo #
|
||||
--echo # Bug#49477: Assertion `0' failed in ha_partition.cc:5530
|
||||
--echo # with temporary table and partitions
|
||||
--echo #
|
||||
CREATE TABLE t1 (a INT) PARTITION BY HASH(a);
|
||||
--error ER_PARTITION_NO_TEMPORARY
|
||||
CREATE TEMPORARY TABLE tmp_t1 LIKE t1;
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # Bug#50392: insert_id is not reset for partitioned tables
|
||||
--echo # auto_increment on duplicate entry
|
||||
|
Reference in New Issue
Block a user