1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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.
This commit is contained in:
unknown
2005-06-08 10:44:58 +04:00
parent 936688feb5
commit e523df439d

View File

@ -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 ;