summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_innodb_stmt.result
diff options
context:
space:
mode:
authorSven Sandberg <sven.sandberg@sun.com>2009-07-15 18:41:02 +0200
committerSven Sandberg <sven.sandberg@sun.com>2009-07-15 18:41:02 +0200
commit8949aaee72d07864474c76f8b59e55ea2b348d5a (patch)
treef6281c2771d2052eef525ab85407755f0ff053a6 /mysql-test/r/partition_innodb_stmt.result
parent86a3e213acf220868c35c77058a2d42fcb6298e1 (diff)
downloadmariadb-git-8949aaee72d07864474c76f8b59e55ea2b348d5a.tar.gz
post-push fixes for BUG#39934: updating test cases
mysql-test/r/partition_innodb_stmt.result: Error message changed. mysql-test/r/sp_trans.result: Error message changed. mysql-test/suite/binlog/r/binlog_stm_unsafe_warning.result: Error message changed. mysql-test/suite/binlog/t/binlog_unsafe.test: Test now uses udf's, so needs to source include/have_udf.inc mysql-test/suite/parts/r/rpl_partition.result: updated result file mysql-test/suite/parts/t/rpl_partition.test: We no longer allow a slave that has binlog_format=statement to execute row events. Hence we force the slave to have binlog_format=row. mysql-test/suite/rpl_ndb/t/rpl_ndb_binlog_format_errors.test: The test uses the example plugin, hence it must source include/have_example_plugin.inc.
Diffstat (limited to 'mysql-test/r/partition_innodb_stmt.result')
-rw-r--r--mysql-test/r/partition_innodb_stmt.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/partition_innodb_stmt.result b/mysql-test/r/partition_innodb_stmt.result
index 2735b0d2193..67c33cf7732 100644
--- a/mysql-test/r/partition_innodb_stmt.result
+++ b/mysql-test/r/partition_innodb_stmt.result
@@ -42,7 +42,7 @@ id
SET TRANSACTION ISOLATION LEVEL READ COMMITTED;
BEGIN;
INSERT INTO t1 VALUES(9);
-ERROR HY000: Binary logging not possible. Message: Transaction level 'READ-COMMITTED' in InnoDB is not safe for binlog mode 'STATEMENT'
+ERROR HY000: Cannot execute statement: binlogging impossible since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.
COMMIT;
COMMIT;
DROP TABLE t1;