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/check.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/check.result')
-rw-r--r-- | mysql-test/r/check.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/check.result b/mysql-test/r/check.result index ac9c7bca9d7..0ac42272c4f 100644 --- a/mysql-test/r/check.result +++ b/mysql-test/r/check.result @@ -1,6 +1,10 @@ drop table if exists t1,t2; drop view if exists v1; create table t1(n int not null, key(n), key(n), key(n), key(n)); +Warnings: +Note 1831 Duplicate index 'n_2' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. +Note 1831 Duplicate index 'n_3' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. +Note 1831 Duplicate index 'n_4' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. check table t1 extended; insert into t1 values (200000); Table Op Msg_type Msg_text |