diff options
author | Chad MILLER <chad@mysql.com> | 2008-08-15 17:52:41 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2008-08-15 17:52:41 -0400 |
commit | 3758804c6920076a162809d203cf2bfef2686943 (patch) | |
tree | f6ad0f92fbb35bdcc895ac83eb63b8133d94ba35 | |
parent | 86fd86ed9839204be5bbae11bc19a3e1a3728332 (diff) | |
download | mariadb-git-3758804c6920076a162809d203cf2bfef2686943.tar.gz |
Fix failing test case, re: bug 38195.
-rw-r--r-- | mysql-test/r/group_min_max.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result index 69e696849a5..d2b7e2042a6 100644 --- a/mysql-test/r/group_min_max.result +++ b/mysql-test/r/group_min_max.result @@ -2392,8 +2392,8 @@ a b 0 11 0 12 explain extended select sql_buffer_result a, max(b)+1 from t1 where a = 0 group by a; -id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range PRIMARY,index PRIMARY 4 NULL 5 Using where; Using index for group-by; Using temporary +id select_type table type possible_keys key key_len ref rows filtered Extra +1 SIMPLE t1 range PRIMARY,index PRIMARY 4 NULL 6 83.33 Using where; Using index for group-by; Using temporary Warnings: Note 1003 select sql_buffer_result `test`.`t1`.`a` AS `a`,(max(`test`.`t1`.`b`) + 1) AS `max(b)+1` from `test`.`t1` where (`test`.`t1`.`a` = 0) group by `test`.`t1`.`a` drop table t1; |