summaryrefslogtreecommitdiff
path: root/mysql-test/r/group_by.result
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-03-31 20:23:10 +0400
committersergefp@mysql.com <>2005-03-31 20:23:10 +0400
commit70e677bd0ff75789c659f35f8b03e16006540fc4 (patch)
treea0d76530275feb59f9afc8e2ef95521c903b1530 /mysql-test/r/group_by.result
parent75a4dc9644774ec0ad5a2de70cff8fdb55652b5e (diff)
downloadmariadb-git-70e677bd0ff75789c659f35f8b03e16006540fc4.tar.gz
Make the tests deterministic: change DELETE ... LIMIT to DELETE ... ORDER BY ... LIMIT
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r--mysql-test/r/group_by.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result
index e4904bb7a04..a8766907fa5 100644
--- a/mysql-test/r/group_by.result
+++ b/mysql-test/r/group_by.result
@@ -693,7 +693,7 @@ concat('val-', x3.a + 3*x4.a), -- 12
concat('val-', @a:=x3.a + 3*x4.a + 12*C.a), -- 120
concat('val-', @a + 120*D.a)
from t1 x3, t1 x4, t1 C, t1 D where x3.a < 3 and x4.a < 4 and D.a < 4;
-delete from t2 where a = 2 and b = 'val-2' limit 30;
+delete from t2 where a = 2 and b = 'val-2' order by a,b,c,d limit 30;
explain select c from t2 where a = 2 and b = 'val-2' group by c;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t2 ref PRIMARY,a PRIMARY 400 const,const 6 Using where