summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-08-03 04:07:19 -0700
committerunknown <konstantin@mysql.com>2004-08-03 04:07:19 -0700
commitcb4b225703da43771a4c464411a0c739c5d1d181 (patch)
tree071f7fca105caaf8bff27602cd9d889bc70093ed /mysql-test
parent9a31010f0049098b7bc4f287d09f66be033d9f6f (diff)
downloadmariadb-git-cb4b225703da43771a4c464411a0c739c5d1d181.tar.gz
Followup2 (new commands are supported in prepared statements): test files
should've been fixed as well. mysql-test/include/ps_modify.inc: Followup2 (new commands are supported in prepared statements): - no more error is expected here mysql-test/t/ps_1general.test: Followup2 (new commands are supported in prepared statements): - no more error expected here
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/include/ps_modify.inc1
-rw-r--r--mysql-test/t/ps_1general.test5
2 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/include/ps_modify.inc b/mysql-test/include/ps_modify.inc
index 04c5cbaad6b..7202d857903 100644
--- a/mysql-test/include/ps_modify.inc
+++ b/mysql-test/include/ps_modify.inc
@@ -59,7 +59,6 @@ execute stmt1 using @arg00;
select a,b from t1 where b=@arg00;
## truncate a table
---error 1295
prepare stmt1 from 'truncate table t1' ;
diff --git a/mysql-test/t/ps_1general.test b/mysql-test/t/ps_1general.test
index 2c86c30f820..5483a70f219 100644
--- a/mysql-test/t/ps_1general.test
+++ b/mysql-test/t/ps_1general.test
@@ -405,9 +405,7 @@ prepare stmt1 from ' handler t1 open ';
## commit/rollback
---error 1295
prepare stmt3 from ' commit ' ;
---error 1295
prepare stmt3 from ' rollback ' ;
@@ -474,11 +472,8 @@ execute stmt3 using @arg00;
select m from t3;
drop table t3;
---error 1295
prepare stmt3 from ' create index t2_idx on t2(b) ';
---error 1295
prepare stmt3 from ' drop index t2_idx on t2 ' ;
---error 1295
prepare stmt3 from ' alter table t2 drop primary key ';
--disable_warnings
drop table if exists new_t2;