summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2005-07-15 02:11:07 +0400
committerunknown <konstantin@mysql.com>2005-07-15 02:11:07 +0400
commit951dacdcf17bcf875bf6c7559cfce578760b38d9 (patch)
tree3e52b3efd536b1a268f538adbb7e471b6aa8b582
parent73386c15a6698234d287525c2271b64756eb3354 (diff)
downloadmariadb-git-951dacdcf17bcf875bf6c7559cfce578760b38d9.tar.gz
Fix ps.test in --ps-protocol
mysql-test/t/ps.test: Disable prepared statements for a part of the test to avoid result mismatch.
-rw-r--r--mysql-test/t/ps.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test
index d08098606a1..beae95d462a 100644
--- a/mysql-test/t/ps.test
+++ b/mysql-test/t/ps.test
@@ -693,11 +693,13 @@ prepare stmt from "select ?FROM t1";
prepare stmt from "select FROM t1 WHERE?=1";
--error 1064
prepare stmt from "update t1 set a=a+?WHERE 1";
+--disable_ps_protocol
--error 1064
select ?;
--error 1064
select ??;
--error 1064
select ? from t1;
+--enable_ps_protocol
drop table t1;
#