/usr/lib/mysql-testsuite/t/percona_bug1008278.test is in percona-server-test-5.6 5.6.22-rel71.0-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Bug 1008278: The server crashes when replication is started
# with "--userstat=1" parameter.
# Just start replcation with "--userstat=1" parameter and execute any
# query on master to be ensure slave doesn't crash.
--source include/have_binlog_format_statement.inc
--source include/master-slave.inc
connection master;
-- disable_warnings
DROP TABLE IF EXISTS t;
-- enable_warnings
CREATE TABLE t(id INT,data CHAR(30));
INSERT INTO t VALUES
(1,"aaaaabbbbbcccccdddddeeeeefffff");
sync_slave_with_master;
connection master;
DROP TABLE t;
sync_slave_with_master;
--source include/rpl_end.inc
|