diff options
author | unknown <timour/timka@lamia.home> | 2006-08-23 18:22:53 +0300 |
---|---|---|
committer | unknown <timour/timka@lamia.home> | 2006-08-23 18:22:53 +0300 |
commit | e3181c59e7962657bf6a273db68e0649d5372bba (patch) | |
tree | b8e88eb53fa7d7f799c39b7d4fe13bb628d27676 /mysql-test/r/distinct.result | |
parent | 5c8c2ab43b73984889fd6c337523b657861793ea (diff) | |
parent | 2baf2fdf13ac46f6679de735f05aa6a290e95cc7 (diff) | |
download | mariadb-git-e3181c59e7962657bf6a273db68e0649d5372bba.tar.gz |
Merge lamia.home:/home/timka/mysql/src/4.1-bug-21456
into lamia.home:/home/timka/mysql/src/5.0-bug-21456
mysql-test/r/distinct.result:
Merge the fix for BUG#21456
mysql-test/t/distinct.test:
Merge the fix for BUG#21456
sql/sql_select.cc:
Merge the fix for BUG#21456
Diffstat (limited to 'mysql-test/r/distinct.result')
-rw-r--r-- | mysql-test/r/distinct.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/distinct.result b/mysql-test/r/distinct.result index a3d1e8bf3bb..86ab2141e2d 100644 --- a/mysql-test/r/distinct.result +++ b/mysql-test/r/distinct.result @@ -563,6 +563,17 @@ id IFNULL(dsc, '-') 2 line number two 3 line number three drop table t1; +CREATE TABLE t1 (a int primary key, b int); +INSERT INTO t1 (a,b) values (1,1), (2,3), (3,2); +explain SELECT DISTINCT a, b FROM t1 ORDER BY b; +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort +SELECT DISTINCT a, b FROM t1 ORDER BY b; +a b +1 1 +3 2 +2 3 +DROP TABLE t1; CREATE TABLE t1 ( ID int(11) NOT NULL auto_increment, x varchar(20) default NULL, |