Commit 99c63747 authored by konstantin@mysql.com's avatar konstantin@mysql.com

Fix ps_7ndb.result wrt working LIMIT clause (due to porting

missed ityesterday :()
parent 79b82323
...@@ -442,9 +442,10 @@ limit 1 '; ...@@ -442,9 +442,10 @@ limit 1 ';
execute stmt1 ; execute stmt1 ;
a b a b
1 one 1 one
prepare stmt1 from ' select a,b from t1 prepare stmt1 from ' select a,b from t1 limit ? ';
limit ? '; execute stmt1 using @arg00;
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 a b
3 three
set @arg00='b' ; set @arg00='b' ;
set @arg01=0 ; set @arg01=0 ;
set @arg02=2 ; set @arg02=2 ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment