summaryrefslogtreecommitdiff
path: root/mysql-test/suite/ndb/r/ndb_binlog_ignore_db.result
blob: e4c9faa802c1c8a3844c8109d9f3f28eb81ea758 (plain)
1
2
3
4
5
6
7
8
9
10
11
reset master;
drop table if exists t1;
drop database if exists mysqltest;
create database mysqltest;
use mysqltest;
create table t1 (a int primary key, b int) engine=ndb;
insert into t1 values (1, 1);
show binlog events from <binlog_start>;
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
master-bin.000001	#	Query	1	#	use `test`; drop table if exists t1
drop database mysqltest;