config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/ndb_binlog/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/ndb_binlog/t/ndb_binlog_default_format.test

--source include/have_ndb.inc
--source include/not_embedded.inc

# The purpose of this test is to show that the global binlog_format
# is automatically upgraded to MIXED in case the mysqld is started
# with STATEMENT

show variables like 'log_bin';

#
# Check that binlog_format has been auto upgraded to MIXED
#
show variables like 'binlog_format';

#
# Run some basic statements and check how they look in the binlog
#
use test;
create table test.t1 (a int primary key) engine=ndb;
insert into test.t1 values (1);
drop table test.t1;
--source include/show_binlog_events.inc

Man Man