diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-07-05 14:00:17 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-07-05 14:00:17 +0400 |
commit | 2ac068d7f4e14d94a132537b673d9d1762de7ee3 (patch) | |
tree | 165c0d5c318ec0e14967c476cc30d2d6da1b3998 /mysql-test | |
parent | 8448c68705a38d798e57a6d1b44e7181ca12aa89 (diff) | |
download | mariadb-git-2ac068d7f4e14d94a132537b673d9d1762de7ee3.tar.gz |
Update test result: same as in 10.0 and maria (and mysql) 5.5
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/group_min_max_innodb.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/group_min_max_innodb.result b/mysql-test/r/group_min_max_innodb.result index 0e7841e979d..320c4b2b750 100644 --- a/mysql-test/r/group_min_max_innodb.result +++ b/mysql-test/r/group_min_max_innodb.result @@ -70,7 +70,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 index NULL PRIMARY 5 NULL 4 Using index; Using temporary explain select distinct f1, f2 from t1; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range NULL PRIMARY 5 NULL 3 Using index for group-by; Using temporary +1 SIMPLE t1 index NULL PRIMARY 5 NULL 4 Using index drop table t1; create table t1(pk int primary key) engine=innodb; create view v1 as select pk from t1 where pk < 20; |