Commit c0c65138 authored by unknown's avatar unknown
Browse files

Fix order by

parent 85391d22
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -35,10 +35,10 @@ update t1 set name="Autodiscover" where id = 2;
show status like 'handler_discover%';
Variable_name	Value
Handler_discover	4
select * from t1 order by name;
select * from t1 order by id;
id	name
2	Autodiscover
1	Autodiscover
2	Autodiscover
3	Discover 3
show status like 'handler_discover%';
Variable_name	Value
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ flush tables;
system rm var/master-data/test/t1.frm ;
update t1 set name="Autodiscover" where id = 2;
show status like 'handler_discover%';
select * from t1 order by name;
select * from t1 order by id;
show status like 'handler_discover%';

#