diff options
author | unknown <kostja@vajra.(none)> | 2007-05-11 17:41:07 +0400 |
---|---|---|
committer | unknown <kostja@vajra.(none)> | 2007-05-11 17:41:07 +0400 |
commit | e62766aea173c4dea4ebcecc402f122540caf0d9 (patch) | |
tree | 12c1c0ecc66bd6dd5b19946a64a7d21f77c68358 /mysql-test/r/ps.result | |
parent | e8bf1bad3d3b81cd51a6d2e458dfbf25dee6135c (diff) | |
parent | a0567199b118f14ec346249d91aabe2ee5d99354 (diff) | |
download | mariadb-git-e62766aea173c4dea4ebcecc402f122540caf0d9.tar.gz |
Merge vajra.(none):/opt/local/work/mysql-5.0-runtime
into vajra.(none):/opt/local/work/mysql-5.1-runtime
mysql-test/r/ps.result:
Auto merged
mysql-test/r/ps_1general.result:
Auto merged
mysql-test/t/ps.test:
Auto merged
mysql-test/t/ps_1general.test:
Auto merged
sql/sql_lex.cc:
Auto merged
sql/sql_lex.h:
Auto merged
sql/sql_yacc.yy:
Auto merged
sql/sql_prepare.cc:
Manual merge.
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r-- | mysql-test/r/ps.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result index 15e1c8730f0..b811a27203c 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -26,11 +26,11 @@ ERROR HY000: Unknown prepared statement handler (no_such_statement) given to DEA execute stmt1; ERROR HY000: Incorrect arguments to EXECUTE prepare stmt2 from 'prepare nested_stmt from "select 1"'; -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 '"select 1"' at line 1 +ERROR HY000: This command is not supported in the prepared statement protocol yet prepare stmt2 from 'execute stmt1'; -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 'stmt1' at line 1 +ERROR HY000: This command is not supported in the prepared statement protocol yet prepare stmt2 from 'deallocate prepare z'; -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 'z' at line 1 +ERROR HY000: This command is not supported in the prepared statement protocol yet prepare stmt3 from 'insert into t1 values (?,?)'; set @arg1=5, @arg2='five'; execute stmt3 using @arg1, @arg2; |