diff options
author | unknown <igor@rurik.mysql.com> | 2005-02-11 13:44:54 -0800 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2005-02-11 13:44:54 -0800 |
commit | cf78ff694732aa3e11a8bd82c25df64664fff18a (patch) | |
tree | 7b36cdd94253e2ac47c2c2f26d3027a779cb2e86 /mysql-test/r/distinct.result | |
parent | a443c77a8c7d5e07450d6345364d309058ed0bf6 (diff) | |
download | mariadb-git-cf78ff694732aa3e11a8bd82c25df64664fff18a.tar.gz |
distinct.result:
Adjustment of the result file after the revision of the fix for bug #7520.
mysql-test/r/distinct.result:
Adjustment of the result file after the revision of the fix for bug #7520.
Diffstat (limited to 'mysql-test/r/distinct.result')
-rw-r--r-- | mysql-test/r/distinct.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/distinct.result b/mysql-test/r/distinct.result index a0343f13394..d37c1e518fa 100644 --- a/mysql-test/r/distinct.result +++ b/mysql-test/r/distinct.result @@ -190,7 +190,7 @@ insert into t3 select * from t4; explain select distinct t1.a from t1,t3 where t1.a=t3.a; table type possible_keys key key_len ref rows Extra t1 index PRIMARY PRIMARY 4 NULL 4 Using index; Using temporary -t3 ref a a 5 t1.a 10 Using where; Using index; Distinct +t3 ref a a 5 t1.a 12 Using where; Using index; Distinct select distinct t1.a from t1,t3 where t1.a=t3.a; a 1 |