mariadb/mysql-test/t/ndb_binlog_ignore_db.test
unknown b3138ef74c A writability test in a prereq file polluted the binlog.
Reset the info after using those files.


mysql-test/t/ndb_binlog_ignore_db.test:
  Reset the binlog after we include several files that have little 
  to do with this test.
2007-01-06 12:34:16 -05:00

16 lines
383 B
Text

-- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
reset master;
--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);
-- source include/show_binlog_events.inc
drop database mysqltest;