~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/t/rpl_row_max_relay_size.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-05-11 18:47:32 UTC
  • mto: (2.1.2 sid) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100511184732-jhn055kfhxze24kt
Tags: upstream-5.1.46
ImportĀ upstreamĀ versionĀ 5.1.46

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Test of options max_binlog_size and max_relay_log_size and
 
2
# how they act (if max_relay_log_size == 0, use max_binlog_size 
 
3
# for relay logs too).
 
4
# Test of manual relay log rotation with FLUSH LOGS.
 
5
 
 
6
# Requires statement logging
 
7
-- source include/not_ndb_default.inc
 
8
set @saved_binlog_format = @@global.binlog_format;
 
9
 
 
10
SET SESSION BINLOG_FORMAT=ROW;
 
11
SET GLOBAL BINLOG_FORMAT=ROW;
 
12
-- source extra/rpl_tests/rpl_max_relay_size.test
 
13
 
 
14
# Restoring to the original values
 
15
connection default;
 
16
SET GLOBAL BINLOG_FORMAT= @saved_binlog_format;
 
17