mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
0cdf1573b6
make print_no_partition_found() to respect MYF(errflag) mysql-test/suite/parts/t/insert_ignore-5421.test: mdev:5421
12 lines
331 B
Text
12 lines
331 B
Text
#
|
|
# MDEV-5421 Assertion `! is_set()' fails on INSERT IGNORE when a table has no partition for a value
|
|
#
|
|
|
|
--source include/have_partition.inc
|
|
CREATE TABLE t1 (i INT) ENGINE=MyISAM
|
|
PARTITION BY RANGE (i) (
|
|
PARTITION p00 VALUES LESS THAN (1),
|
|
PARTITION p01 VALUES LESS THAN (2)
|
|
);
|
|
INSERT IGNORE INTO t1 VALUES (3);
|
|
DROP TABLE t1;
|