/usr/lib/mysql-testsuite/t/percona_bug1170103.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 | ########################################################################
# Byg #1170103: Memory leak @ read_view_open_now...
########################################################################
--source include/have_query_cache.inc
--source include/have_innodb.inc
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;
SELECT * FROM t;
SET GLOBAL query_cache_size=@old_query_cache_size;
SET GLOBAL query_cache_type=@old_query_cache_type;
DROP TABLE t;
|