summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/parts/r/insert_ignore-5421.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/parts/r/insert_ignore-5421.result')
-rw-r--r--mysql-test/suite/parts/r/insert_ignore-5421.result9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/suite/parts/r/insert_ignore-5421.result b/mysql-test/suite/parts/r/insert_ignore-5421.result
new file mode 100644
index 00000000..6cbb21fe
--- /dev/null
+++ b/mysql-test/suite/parts/r/insert_ignore-5421.result
@@ -0,0 +1,9 @@
+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);
+Warnings:
+Warning 1526 Table has no partition for value 3
+DROP TABLE t1;