summaryrefslogtreecommitdiff
path: root/mysql-test/suite/pbxt/t/limit.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/pbxt/t/limit.test')
-rw-r--r--mysql-test/suite/pbxt/t/limit.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/pbxt/t/limit.test b/mysql-test/suite/pbxt/t/limit.test
index 0844af8705d..a65d5060e4d 100644
--- a/mysql-test/suite/pbxt/t/limit.test
+++ b/mysql-test/suite/pbxt/t/limit.test
@@ -15,7 +15,7 @@ update t1 set b=2 where b=1 limit 2;
select * from t1 order by a; # PBXT: required for consistent result
update t1 set b=4 where b=1;
select * from t1 order by a; # PBXT: required for consistent result
-delete from t1 where b=2 limit 1;
+delete from t1 where b=2 order by a limit 1;
select * from t1 order by a; # PBXT: required for consistent result
delete from t1 limit 1;
select * from t1 order by a; # PBXT: required for consistent result