~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/mysqlbinlog_base64.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
35840
110
110
drop table t1;
111
111
drop table t2;
 
112
RESET MASTER;
 
113
USE test;
 
114
SET @old_binlog_format= @@binlog_format;
 
115
SET SESSION binlog_format=ROW;
 
116
CREATE TABLE t1(c1 INT);
 
117
INSERT INTO t1 VALUES (1);
 
118
FLUSH LOGS;
 
119
DROP TABLE t1;
 
120
SET SESSION binlog_format= @old_binlog_format;
 
121
RESET MASTER;