mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-34705: Binlog in Engine: Very first sketch, able to create and write an InnoDB tablespace
Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
This commit is contained in:
11
mysql-test/suite/binlog/t/binlog_in_engine.test
Normal file
11
mysql-test/suite/binlog/t/binlog_in_engine.test
Normal file
@@ -0,0 +1,11 @@
|
||||
--source include/have_innodb.inc
|
||||
--source include/have_binlog_format_mixed.inc
|
||||
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
||||
INSERT INTO t1 VALUES (1);
|
||||
BEGIN;
|
||||
INSERT INTO t1 VALUES (2);
|
||||
INSERT INTO t1 VALUES (3);
|
||||
COMMIT;
|
||||
SELECT * FROM t1 ORDER BY a;
|
||||
DROP TABLE t1;
|
Reference in New Issue
Block a user