summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <sanja@askmonty.org>2013-09-27 07:29:36 +0300
committerunknown <sanja@askmonty.org>2013-09-27 07:29:36 +0300
commita695674001c933ff6bf0fdbdf3b05436c50bd5bc (patch)
treed828fc4a086ec7f4d8907ab22b6b1cfdbde45591
parent61ba356a9d1d55afa51e9c1885f646c5fdb42656 (diff)
downloadmariadb-git-a695674001c933ff6bf0fdbdf3b05436c50bd5bc.tar.gz
Test with double index fixed.
-rw-r--r--mysql-test/r/group_min_max.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result
index 43b0f4d56f3..3f8bb6395e9 100644
--- a/mysql-test/r/group_min_max.result
+++ b/mysql-test/r/group_min_max.result
@@ -2551,6 +2551,8 @@ a MIN(b) MAX(b) AVG(b)
1 1 3 2.0000
DROP TABLE t1;
create table t1 (a int, b int, key (a,b), key `index` (a,b)) engine=MyISAM;
+Warnings:
+Note 1831 Duplicate index 'index' defined on the table 'test.t1'. This is deprecated and will be disallowed in a future release.
insert into t1 (a,b) values
(0,0),(0,1),(0,2),(0,3),(0,4),(0,5),(0,6),
(0,7),(0,8),(0,9),(0,10),(0,11),(0,12),(0,13),