/usr/lib/mysql-testsuite/r/percona_bug1218330.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 11 12 13 14 | CREATE TABLE t1 (
a INT PRIMARY KEY, b INT,
c CHAR(200),
UNIQUE INDEX b(b)) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1, 1, REPEAT("a", 200));
should_be_1
1
should_be_1
1
should_be_1
1
should_be_1
1
DROP TABLE t1;
|