mysqlbinlog.test 11.2 KB
Newer Older
unknown's avatar
unknown committed
1
# We are using .opt file since we need small binlog size
2
# TODO: Need to look at making a row based version once the new row based client is completed. [jbm]
3
-- source include/have_binlog_format_mixed_or_statement.inc
unknown's avatar
unknown committed
4

5
-- source include/have_log_bin.inc
6

7 8 9
# Deletes all the binary logs
reset master;

unknown's avatar
unknown committed
10 11 12
# we need this for getting fixed timestamps inside of this test
set timestamp=1000000000;

13
--disable_warnings
unknown's avatar
unknown committed
14
drop table if exists t1,t2,t3,t4,t5,t03,t04;
15 16
--enable_warnings

unknown's avatar
unknown committed
17 18 19 20 21 22 23 24 25 26 27 28
create table t1 (word varchar(20));
create table t2 (id int auto_increment not null primary key);

# simple test for simple statement and various events
insert into t1 values ("abirvalg");
insert into t2 values ();
# Should be uncommented in 4.1
# set @a:=1
# insert into t2 values (@a);

# test for load data and load data distributed among the several 
# files (we need to fill up first binlog)
unknown's avatar
unknown committed
29 30 31 32 33
load data infile '../../std_data/words.dat' into table t1;
load data infile '../../std_data/words.dat' into table t1;
load data infile '../../std_data/words.dat' into table t1;
load data infile '../../std_data/words.dat' into table t1;
load data infile '../../std_data/words.dat' into table t1;
unknown's avatar
unknown committed
34 35 36 37 38 39 40 41 42 43 44 45 46
# simple query to show more in second binlog
insert into t1 values ("Alas");
flush logs;

# delimiters are for easier debugging in future
--disable_query_log
select "--- Local --" as "";
--enable_query_log

#
# We should use --short-form everywhere because in other case output will
# be time dependend. Better than nothing.
#
unknown's avatar
unknown committed
47
let $MYSQLD_DATADIR= `select @@datadir`;
48
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
49
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
50
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000001
51

unknown's avatar
unknown committed
52 53 54 55
# this should not fail but shouldn't produce any working statements
--disable_query_log
select "--- Broken LOAD DATA --" as "";
--enable_query_log
56
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
57
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
58
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000002 2> /dev/null
unknown's avatar
unknown committed
59 60 61 62 63

# this should show almost nothing
--disable_query_log
select "--- --database --" as "";
--enable_query_log
64
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
65
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
66
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --database=nottest $MYSQLD_DATADIR/master-bin.000001 2> /dev/null
unknown's avatar
unknown committed
67 68 69 70 71

# this test for position option
--disable_query_log
select "--- --position --" as "";
--enable_query_log
72
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
73
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
74
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --position=239 $MYSQLD_DATADIR/master-bin.000002
unknown's avatar
unknown committed
75 76 77 78 79 80 81 82 83

# These are tests for remote binlog.
# They should return the same as previous test.

--disable_query_log
select "--- Remote --" as "";
--enable_query_log

# This is broken now
84
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
85
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
86
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT master-bin.000001
unknown's avatar
unknown committed
87 88 89 90 91

# This is broken too
--disable_query_log
select "--- Broken LOAD DATA --" as "";
--enable_query_log
92
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
93
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
94
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT master-bin.000002 2> /dev/null
unknown's avatar
unknown committed
95 96 97 98 99

# And this too ! (altough it is documented)
--disable_query_log
select "--- --database --" as "";
--enable_query_log
100
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
101
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
102
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --read-from-remote-server --user=root --host=127.0.0.1 --port=$MASTER_MYPORT --database=nottest master-bin.000001 2> /dev/null
unknown's avatar
unknown committed
103 104 105 106 107

# Strangely but this works
--disable_query_log
select "--- --position --" as "";
--enable_query_log
108
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
109
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
110
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ --read-from-remote-server --position=239 --user=root --host=127.0.0.1 --port=$MASTER_MYPORT master-bin.000002
unknown's avatar
unknown committed
111

112 113 114 115 116
# Bug#7853 (mysqlbinlog does not accept input from stdin)
--disable_query_log
select "--- reading stdin --" as "";
--enable_query_log
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
117
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
118
--exec $MYSQL_BINLOG --short-form - < $MYSQL_TEST_DIR/std_data/trunc_binlog.000001
119 120

--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
121
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
122
--exec $MYSQL_BINLOG --short-form --position=79 - < $MYSQL_TEST_DIR/std_data/trunc_binlog.000001
unknown's avatar
unknown committed
123
drop table t1,t2;
124

125
#
126
#BUG#14157: utf8 encoding in binlog without set character_set_client
127 128
#
flush logs;
129 130 131 132 133 134 135 136 137
--write_file $MYSQLTEST_VARDIR/tmp/bug14157.sql
create table if not exists t5 (a int);
set names latin1;
create temporary table `` (a int);
insert into `` values (1);
insert into t5 select * from ``
EOF
--exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/bug14157.sql
--remove_file $MYSQLTEST_VARDIR/tmp/bug14157.sql
138

139 140 141
# resulted binlog, parly consisting of multi-byte utf8 chars, 
# must be digestable for both client and server. In 4.1 the client 
# should use default-character-set same as the server.
142
flush logs;
unknown's avatar
unknown committed
143
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000004 | $MYSQL
144
select * from t5  /* must be (1),(1) */;
unknown's avatar
unknown committed
145
drop table t5;
146

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
#
# Bug#22645 LC_TIME_NAMES: Statement not replicated
# Check that a dump created by mysqlbinlog reproduces
# lc_time_names dependent values correctly
#
flush logs;
create table t5 (c1 int, c2 varchar(128) character set latin1 not null);
insert into t5 values (1, date_format('2001-01-01','%W'));
set lc_time_names=de_DE;
insert into t5 values (2, date_format('2001-01-01','%W'));
set lc_time_names=en_US;
insert into t5 values (3, date_format('2001-01-01','%W'));
select * from t5 order by c1;
flush logs;
drop table t5;
unknown's avatar
unknown committed
162
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000006 | $MYSQL
163
select * from t5 order by c1;
unknown's avatar
unknown committed
164 165
drop table t5;

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
#
# Bug#20396 Bin Log does not get DELIMETER cmd - Recover StoredProc fails 
#
--disable_warnings
drop procedure if exists p1;
--enable_warnings
flush logs;
delimiter //;
create procedure p1()
begin
select 1;
end;
//
delimiter ;//
flush logs;
call p1();
drop procedure p1;
--error 1305
call p1();
185
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
186 187
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000008
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000008 | $MYSQL
188 189 190
call p1();
drop procedure p1;

unknown's avatar
unknown committed
191
#
192 193 194 195 196 197
# Some coverage of not normally used parts
#
--disable_query_log
--exec $MYSQL_BINLOG --version 2>&1 > /dev/null
--exec $MYSQL_BINLOG --help 2>&1 > /dev/null
--enable_query_log
unknown's avatar
unknown committed
198

199 200 201 202 203 204 205
#
# Bug#15126 character_set_database is not replicated
# (LOAD DATA INFILE need it)
#

flush logs;
create table t1 (a varchar(64) character set utf8);
unknown's avatar
unknown committed
206
load data infile '../../std_data/loaddata6.dat' into table t1;
207
set character_set_database=koi8r;
unknown's avatar
unknown committed
208
load data infile '../../std_data/loaddata6.dat' into table t1;
209
set character_set_database=latin1;
unknown's avatar
unknown committed
210 211
load data infile '../../std_data/loaddata6.dat' into table t1;
load data infile '../../std_data/loaddata6.dat' into table t1;
212
set character_set_database=koi8r;
unknown's avatar
unknown committed
213
load data infile '../../std_data/loaddata6.dat' into table t1;
214
set character_set_database=latin1;
unknown's avatar
unknown committed
215 216
load data infile '../../std_data/loaddata6.dat' into table t1;
load data infile '../../std_data/loaddata6.dat' into table t1 character set koi8r;
217 218 219
select hex(a) from t1;
drop table t1;
flush logs;
unknown's avatar
unknown committed
220
--replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
221
--replace_regex /SQL_LOAD_MB-[0-9]-[0-9]/SQL_LOAD_MB-#-#/
unknown's avatar
unknown committed
222
--exec $MYSQL_BINLOG --short-form --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000010
223

unknown's avatar
unknown committed
224 225 226 227 228 229 230 231 232 233 234
#
# Bug#28293 missed '#' sign in the hex dump when the dump length
# is divisible by 16.
#

CREATE TABLE t1 (c1 CHAR(10));
# we need this for getting fixed timestamps inside of this test
flush logs;
INSERT INTO t1 VALUES ('0123456789');
flush logs;
DROP TABLE t1;
unknown's avatar
unknown committed
235
--exec $MYSQL_BINLOG --hexdump --local-load=$MYSQLTEST_VARDIR/tmp/ $MYSQLD_DATADIR/master-bin.000012 | grep 'Query' | sed 's/[0-9]\{1,\}/REMOVED/g'
unknown's avatar
unknown committed
236

237 238 239 240 241 242 243 244
#
# Bug #29928: incorrect connection_id() restoring from mysqlbinlog out
#
flush logs;
create table t1(a int);
insert into t1 values(connection_id()); 
let $a= `select a from t1`;
flush logs;
unknown's avatar
unknown committed
245
--exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000014 > $MYSQLTEST_VARDIR/tmp/bug29928.sql
246 247 248 249 250 251 252 253 254 255 256 257
drop table t1;
connect (con1, localhost, root, , test);                                            
connection con1;
--exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/bug29928.sql
--remove_file $MYSQLTEST_VARDIR/tmp/bug29928.sql
let $b= `select a from t1`;
disconnect con1;
connection default;
let $c= `select $a=$b`;
--echo $c
drop table t1;

258 259 260 261
echo shell> mysqlbinlog std_data/corrupt-relay-bin.000624 > var/tmp/bug31793.sql;
error 1;
exec $MYSQL_BINLOG $MYSQL_TEST_DIR/std_data/corrupt-relay-bin.000624 > $MYSQLTEST_VARDIR/tmp/bug31793.sql;

262
--echo End of 5.0 tests
263 264 265 266 267 268

#
# Test --disable-force-if-open and --force-if-open
#
flush logs;
--error 1
unknown's avatar
unknown committed
269 270
--exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000016 >/dev/null 2>/dev/null
--exec $MYSQL_BINLOG --force-if-open $MYSQLD_DATADIR/master-bin.000016 >/dev/null 2>/dev/null
271

272 273 274 275 276 277 278 279 280 281 282 283 284 285
--echo BUG#31611: Security risk with BINLOG statement

SET BINLOG_FORMAT=ROW;
CREATE DATABASE mysqltest1;
CREATE USER untrusted@localhost;
GRANT SELECT ON mysqltest1.* TO untrusted@localhost;

SHOW GRANTS FOR untrusted@localhost;
USE mysqltest1;
CREATE TABLE t1 (a INT, b CHAR(64));
flush logs;
INSERT INTO t1 VALUES (1,USER());
flush logs;
echo mysqlbinlog var/log/master-bin.000017 > var/tmp/bug31611.sql;
unknown's avatar
unknown committed
286
exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000017 > $MYSQLTEST_VARDIR/tmp/bug31611.sql;
287 288 289 290 291 292 293 294 295 296 297
connect (unsecure,localhost,untrusted,,mysqltest1);
echo mysql mysqltest1 -uuntrusted < var/tmp/bug31611.sql;
error 1;
exec $MYSQL mysqltest1 -uuntrusted < $MYSQLTEST_VARDIR/tmp/bug31611.sql;
connection unsecure;
error ER_TABLEACCESS_DENIED_ERROR;
INSERT INTO t1 VALUES (1,USER());

SELECT * FROM t1;
connection default;
DROP DATABASE mysqltest1;
298
DROP USER untrusted@localhost;
299

300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
--echo BUG#32580: mysqlbinlog cannot read binlog event with user variables

# Testing that various kinds of events can be read and restored properly.

connection default;
USE test;
SET BINLOG_FORMAT = STATEMENT;
FLUSH LOGS;
CREATE TABLE t1 (a_real FLOAT, an_int INT, a_decimal DECIMAL(5,2), a_string CHAR(32));
SET @a_real = rand(20) * 1000;
SET @an_int = 1000;
SET @a_decimal = CAST(rand(19) * 999 AS DECIMAL(5,2));
SET @a_string = 'Just a test';
INSERT INTO t1 VALUES (@a_real, @an_int, @a_decimal, @a_string);
FLUSH LOGS;
query_vertical SELECT * FROM t1;
DROP TABLE t1;

echo >> mysqlbinlog var/log/master-bin.000019 > var/tmp/bug32580.sql;
unknown's avatar
unknown committed
319
exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000019 > $MYSQLTEST_VARDIR/tmp/bug32580.sql;
320 321 322 323 324 325 326
echo >> mysql test < var/tmp/bug32580.sql;
exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/bug32580.sql;
remove_file $MYSQLTEST_VARDIR/tmp/bug32580.sql;

query_vertical SELECT * FROM t1;
DROP TABLE t1;

327
--echo End of 5.1 tests