diff options
author | Rohit Kalhans <rohit.kalhans@oracle.com> | 2012-02-08 12:10:55 +0530 |
---|---|---|
committer | Rohit Kalhans <rohit.kalhans@oracle.com> | 2012-02-08 12:10:55 +0530 |
commit | b7430d73e4be2f5933e147ba7a44e3b054cb79b7 (patch) | |
tree | e58195a7225032197fd3df4e5727a459c791c2f8 /mysql-test/t/ps.test | |
parent | de85a60049af7af2cfdaa6f642e4ea7b7189afbe (diff) | |
download | mariadb-git-b7430d73e4be2f5933e147ba7a44e3b054cb79b7.tar.gz |
Backout the patch for bug#11758263.
Diffstat (limited to 'mysql-test/t/ps.test')
-rw-r--r-- | mysql-test/t/ps.test | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index 4c525c5320e..e00bd785789 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -1,6 +1,5 @@ -- source include/not_embedded.inc -- source include/have_log_bin.inc -call mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.'); # # SQL Syntax for Prepared Statements test # @@ -433,7 +432,6 @@ deallocate prepare stmt; create table t1 (a int); insert into t1 values (1),(2),(3); create table t2 select * from t1; ---disable_warnings prepare stmt FROM 'create table t2 select * from t1'; drop table t2; execute stmt; @@ -443,7 +441,6 @@ execute stmt; execute stmt; drop table t2; execute stmt; ---enable_warnings drop table t1,t2; deallocate prepare stmt; @@ -1179,7 +1176,6 @@ create database mysqltest character set utf8; prepare stmt1 from "create table mysqltest.t1 (c char(10))"; prepare stmt2 from "create table mysqltest.t2 select 'test'"; execute stmt1; ---disable_warnings ONCE execute stmt2; show create table mysqltest.t1; show create table mysqltest.t2; @@ -1187,7 +1183,6 @@ drop table mysqltest.t1; drop table mysqltest.t2; alter database mysqltest character set latin1; execute stmt1; ---disable_warnings ONCE execute stmt2; show create table mysqltest.t1; show create table mysqltest.t2; |