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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user