diff options
author | unknown <monty@mysql.com> | 2005-05-19 05:54:31 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-05-19 05:54:31 +0300 |
commit | 44819149ad03d19a319f92fad44c8840880d9de2 (patch) | |
tree | affceee64bc0220831cf06439a92fec21907adbf /mysql-test/t/group_min_max.test | |
parent | 6cd52671d7c69d425ac695c11c79cd29b5a01c12 (diff) | |
download | mariadb-git-44819149ad03d19a319f92fad44c8840880d9de2.tar.gz |
portablity fix
Diffstat (limited to 'mysql-test/t/group_min_max.test')
-rw-r--r-- | mysql-test/t/group_min_max.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/group_min_max.test b/mysql-test/t/group_min_max.test index f705342b81c..76f959b983b 100644 --- a/mysql-test/t/group_min_max.test +++ b/mysql-test/t/group_min_max.test @@ -174,7 +174,7 @@ explain select a1, max(a2) from t1 group by a1; explain select a1, min(a2), max(a2) from t1 group by a1; explain select a1, a2, b, min(c), max(c) from t1 group by a1,a2,b; explain select a1,a2,b,max(c),min(c) from t1 group by a1,a2,b; ---replace_column 9 # +--replace_column 7 # 9 # explain select a1,a2,b,max(c),min(c) from t2 group by a1,a2,b; -- Select fields in different order explain select min(a2), a1, max(a2), min(a2), a1 from t1 group by a1; |