diff options
-rw-r--r-- | mysql-test/t/ps.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index f9b6d27bacc..fa5dd0680b5 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -815,10 +815,12 @@ 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; |