diff options
author | unknown <sanja@askmonty.org> | 2013-09-20 22:30:19 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2013-09-20 22:30:19 +0300 |
commit | 192bafe526b42fc92e6549cf752b01bd17bf2c70 (patch) | |
tree | 5aa0f19154b9a01a42a084afc9161acf4b459d34 /mysql-test/r/partition.result | |
parent | c9f0792c2904988efb1a421dcd174b0bf9f3c0e4 (diff) | |
download | mariadb-git-192bafe526b42fc92e6549cf752b01bd17bf2c70.tar.gz |
Check for duplicate index (port from mysql)
(pre fts)
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index f2429c09149..24567f5cd72 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -299,6 +299,8 @@ insert into t1 select * from t1; create index i on t1 (a); ERROR 42000: Duplicate key name 'i' create index i2 on t1 (a); +Warnings: +Note 1831 Duplicate index 'i2' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. drop table t1; CREATE TABLE t1 (a INT, FOREIGN KEY (a) REFERENCES t0 (a)) ENGINE=MyISAM |