1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#36001: Partitions: spelling and using some error messages

Backport from 6.0

Changed error message to show that it is partitioning
that does not support foreign keys yet.

Changed spelling from British english to American english.
This commit is contained in:
Mattias Jonsson
2009-02-18 21:10:19 +01:00
parent ad0e657db4
commit d8e34e554c
5 changed files with 23 additions and 11 deletions

View File

@ -16,6 +16,14 @@ SET @old_general_log= @@global.general_log;
drop table if exists t1, t2;
--enable_warnings
#
# Bug#36001: Partitions: spelling and using some error messages
#
--error ER_FOREIGN_KEY_ON_PARTITIONED
CREATE TABLE t1 (a INT, FOREIGN KEY (a) REFERENCES t0 (a))
ENGINE=MyISAM
PARTITION BY HASH (a);
#
# Bug#40954: Crash if range search and order by.
#