diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-13 13:53:59 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-13 13:53:59 -0500 |
commit | ee8b5c305a2334d06fe999b2db441d0436f9f423 (patch) | |
tree | fb613fed64234c3e211d2ae01272e1f31ca19138 /mysql-test/r/constraints.result | |
parent | 11544334a277508fb984c0a5bba8faa6b97a2762 (diff) | |
parent | 4f5338467807f099b67f07d0bfb415358222a2b1 (diff) | |
download | mariadb-git-ee8b5c305a2334d06fe999b2db441d0436f9f423.tar.gz |
Merge tag 'mariadb-10.0.29' into 10.0-galera
Diffstat (limited to 'mysql-test/r/constraints.result')
-rw-r--r-- | mysql-test/r/constraints.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/constraints.result b/mysql-test/r/constraints.result index 3bec2c3e16d..891f12915cb 100644 --- a/mysql-test/r/constraints.result +++ b/mysql-test/r/constraints.result @@ -18,10 +18,10 @@ create table t1 (a int null); alter table t1 add constraint constraint_1 unique (a); alter table t1 add constraint unique key_1(a); Warnings: -Note 1831 Duplicate index 'key_1' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. +Note 1831 Duplicate index `key_1`. This is deprecated and will be disallowed in a future release. alter table t1 add constraint constraint_2 unique key_2(a); Warnings: -Note 1831 Duplicate index 'key_2' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release. +Note 1831 Duplicate index `key_2`. This is deprecated and will be disallowed in a future release. show create table t1; Table Create Table t1 CREATE TABLE `t1` ( |