/usr/lib/mysql-testsuite/r/percona_bug1170103.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 15 16 17 18 19 | CREATE TABLE t(a INT) ENGINE=InnoDB;
INSERT INTO t VALUES (1), (2), (3);
SET @old_query_cache_size=@@query_cache_size;
SET @old_query_cache_type=@@query_cache_type;
SET GLOBAL query_cache_size=1024*1024;
SET GLOBAL query_cache_type=1;
SELECT * FROM t;
a
1
2
3
SELECT * FROM t;
a
1
2
3
SET GLOBAL query_cache_size=@old_query_cache_size;
SET GLOBAL query_cache_type=@old_query_cache_type;
DROP TABLE t;
|