mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
64 lines
1.7 KiB
Text
64 lines
1.7 KiB
Text
|
# The purpose of this test is to test that setting autocommit does a
|
||
|
# commit of outstanding transactions and nothing is left pending in
|
||
|
# the transaction cache.
|
||
|
|
||
|
source include/have_log_bin.inc;
|
||
|
source include/have_innodb.inc;
|
||
|
|
||
|
# We need a transactional engine, so let's use InnoDB
|
||
|
CREATE TABLE t1 (id INT) ENGINE = InnoDB;
|
||
|
|
||
|
# Testing SET AUTOCOMMIT
|
||
|
SET BINLOG_FORMAT = STATEMENT;
|
||
|
|
||
|
let $cleanup = COMMIT;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 0;
|
||
|
let $statement = SET AUTOCOMMIT = 1;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 1;
|
||
|
let $statement = SET AUTOCOMMIT = 1;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 0;
|
||
|
let $statement = SET AUTOCOMMIT = 0;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 1;
|
||
|
let $statement = SET AUTOCOMMIT = 0;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
SET BINLOG_FORMAT = ROW;
|
||
|
let $prepare = SET AUTOCOMMIT = 0;
|
||
|
let $statement = SET AUTOCOMMIT = 1;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 1;
|
||
|
let $statement = SET AUTOCOMMIT = 1;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 0;
|
||
|
let $statement = SET AUTOCOMMIT = 0;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
let $prepare = SET AUTOCOMMIT = 1;
|
||
|
let $statement = SET AUTOCOMMIT = 0;
|
||
|
source extra/binlog_tests/implicit.test;
|
||
|
|
||
|
RESET MASTER;
|
||
|
SET AUTOCOMMIT = 0;
|
||
|
INSERT INTO t1 VALUES (1);
|
||
|
source include/show_binlog_events.inc;
|
||
|
LOCK TABLES t1 WRITE;
|
||
|
source include/show_binlog_events.inc;
|
||
|
INSERT INTO t1 VALUES (2);
|
||
|
source include/show_binlog_events.inc;
|
||
|
UNLOCK TABLES;
|
||
|
source include/show_binlog_events.inc;
|
||
|
COMMIT;
|
||
|
source include/show_binlog_events.inc;
|
||
|
|
||
|
# Cleaning up
|
||
|
DROP TABLE t1;
|