mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
752b688181
mysql-test/r/ndb_binlog_ignore_db.result: New BitKeeper file ``mysql-test/r/ndb_binlog_ignore_db.result'' mysql-test/t/ndb_binlog_ignore_db-master.opt: New BitKeeper file ``mysql-test/t/ndb_binlog_ignore_db-master.opt'' mysql-test/t/ndb_binlog_ignore_db.test: New BitKeeper file ``mysql-test/t/ndb_binlog_ignore_db.test''
19 lines
473 B
Text
19 lines
473 B
Text
-- source include/have_ndb.inc
|
|
-- source include/have_binlog_format_row.inc
|
|
|
|
--let $binlog_start=102
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
drop database if exists mysqltest;
|
|
--enable_warnings
|
|
|
|
create database mysqltest;
|
|
use mysqltest;
|
|
create table t1 (a int primary key, b int) engine=ndb;
|
|
insert into t1 values (1, 1);
|
|
--replace_result $binlog_start <binlog_start>
|
|
--replace_column 2 # 4 # 5 #
|
|
--eval show binlog events from $binlog_start
|
|
|
|
drop database mysqltest;
|