summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-05-17 11:04:12 +0200
committerunknown <serg@serg.mylan>2004-05-17 11:04:12 +0200
commit484f6cb3b49d902a76f7c3f0b3e332dc1ef36a9e (patch)
treed73198dde21335dba2533b1b1906050dd572d46a /mysql-test
parent36bce251128b8fd300c4a6329d0c2d8f601a14bc (diff)
downloadmariadb-git-484f6cb3b49d902a76f7c3f0b3e332dc1ef36a9e.tar.gz
bug#3681 - order by, distinct, refer to aliased field by name
check for field_name (not only for name) in find_item_in_list, to be compatible with item->eq() that is done later mysql-test/r/order_by.result: bug#3681 - order by, distinct, refer to aliased field by name
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/order_by.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/order_by.result b/mysql-test/r/order_by.result
index 5edffdacc98..694dc26bcde 100644
--- a/mysql-test/r/order_by.result
+++ b/mysql-test/r/order_by.result
@@ -89,10 +89,10 @@ create table t1 ( pk int primary key, name varchar(255) not null, number v
insert into t1 values (1, 'Gamma', '123'), (2, 'Gamma Ext', '123a'), (3, 'Alpha', '001'), (4, 'Beta', '200c');
select distinct t1.name as 'Building Name',t1.number as 'Building Number' from t1 order by t1.name asc;
Building Name Building Number
-Gamma 123
-Gamma Ext 123a
Alpha 001
Beta 200c
+Gamma 123
+Gamma Ext 123a
drop table t1;
create table t1 (id int not null,col1 int not null,col2 int not null,index(col1));
insert into t1 values(1,2,2),(2,2,1),(3,1,2),(4,1,1),(5,1,4),(6,2,3),(7,3,1),(8,2,4);