summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps_7ndb.result
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2005-06-08 10:44:58 +0400
committerunknown <konstantin@mysql.com>2005-06-08 10:44:58 +0400
commite523df439d1fc23fa04de158f0d7ccfc0e046333 (patch)
tree2b3b16dac5431e1d21011d8b66a7fee1d4776fde /mysql-test/r/ps_7ndb.result
parent936688feb5638a8e11d0de363a05eaced99abdd5 (diff)
downloadmariadb-git-e523df439d1fc23fa04de158f0d7ccfc0e046333.tar.gz
Fix ps_7ndb.result wrt working LIMIT clause (due to porting
missed ityesterday :() mysql-test/r/ps_7ndb.result: Fix ps_7ndb.result wrt working LIMIT clause.
Diffstat (limited to 'mysql-test/r/ps_7ndb.result')
-rw-r--r--mysql-test/r/ps_7ndb.result7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/r/ps_7ndb.result b/mysql-test/r/ps_7ndb.result
index 3b071d70b93..d31f8c57513 100644
--- a/mysql-test/r/ps_7ndb.result
+++ b/mysql-test/r/ps_7ndb.result
@@ -442,9 +442,10 @@ limit 1 ';
execute stmt1 ;
a b
1 one
-prepare stmt1 from ' select a,b from t1
-limit ? ';
-ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 2
+prepare stmt1 from ' select a,b from t1 limit ? ';
+execute stmt1 using @arg00;
+a b
+3 three
set @arg00='b' ;
set @arg01=0 ;
set @arg02=2 ;