summaryrefslogtreecommitdiff
path: root/mysql-test/include
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2005-06-14 16:40:50 +0200
committerunknown <mskold@mysql.com>2005-06-14 16:40:50 +0200
commit110eb52dcc34eccc68a5f43d6ce7438c0130f4b9 (patch)
treeb0ebd0174c17d9642bc69e6b49a8a2bb573a3572 /mysql-test/include
parent692fcc00b07a89040a2af8d3709d18f50a8e6b6a (diff)
downloadmariadb-git-110eb52dcc34eccc68a5f43d6ce7438c0130f4b9.tar.gz
Added order by for failing ps_7ndb test
Diffstat (limited to 'mysql-test/include')
-rw-r--r--mysql-test/include/ps_query.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/include/ps_query.inc b/mysql-test/include/ps_query.inc
index 63504a0fa2b..27a86f88231 100644
--- a/mysql-test/include/ps_query.inc
+++ b/mysql-test/include/ps_query.inc
@@ -300,7 +300,7 @@ set @arg00=1;
prepare stmt1 from ' select a,b from t1 order by a
limit 1 ';
execute stmt1 ;
-prepare stmt1 from ' select a,b from t1 limit ? ';
+prepare stmt1 from ' select a,b from t1 order by a limit ? ';
execute stmt1 using @arg00;
##### parameter used in many places