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),