1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug #40360: Binlog related errors with binlog off

Adding missing drop of created table and tidying display.
This commit is contained in:
Mats Kindahl
2008-11-03 18:46:47 +01:00
parent 005e7fc3ba
commit 32c9fe6bf5
2 changed files with 7 additions and 12 deletions

View File

@ -38,9 +38,8 @@ drop table t1, t2;
SET SESSION BINLOG_FORMAT=STATEMENT;
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
SHOW VARIABLES LIKE 'log_bin';
SELECT @@session.binlog_format;
SELECT @@session.tx_isolation;
query_vertical select @@session.sql_log_bin, @@session.binlog_format, @@session.tx_isolation;
CREATE TABLE t1 ( a INT ) ENGINE=InnoDB;
INSERT INTO t1 VALUES(1);
DROP TABLE t1;