mariadb/mysql-test/t/ndb_binlog_ignore_db.test
unknown cf63c505da corrrection of test case
mysql-test/r/ndb_binlog_ddl_multi.result:
  corrrection of test case
  (this was actually a bug that had not been spotted, that was fixed by previous patch)
2007-04-19 06:24:36 +02:00

16 lines
384 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_events2.inc
drop database mysqltest;