/usr/lib/mysql-testsuite/r/percona_bug1017192.result 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 | SET DEBUG_SYNC='reset';
CREATE TABLE IF NOT EXISTS t1 (`a` INT) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1),(2),(3),(4);
SET DEBUG_SYNC='after_copy_data_between_tables SIGNAL run_show_innodb_status
WAIT_FOR show_innodb_status_done';
ALTER TABLE t1 PARTITION BY HASH (`a`) PARTITIONS 4 ;
SET DEBUG_SYNC='now WAIT_FOR run_show_innodb_status';
SHOW ENGINE INNODB STATUS;
SET DEBUG_SYNC='now SIGNAL show_innodb_status_done';
DROP TABLE t1;
|