This file is indexed.

/usr/lib/mysql-testsuite/t/percona_bug856404.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
########################################################################
# Bug #856404: Crash when query_cache_strip_comments enabled
########################################################################

--disable_warnings
DROP TABLE IF EXISTS table17_int;
DROP TABLE IF EXISTS table30_int;
--enable_warnings

CREATE TABLE `table17_int` (pk integer auto_increment primary key, `col_char_10_not_null_key` char(10), `col_enum_not_null_key` int);
CREATE TABLE `table30_int` (pk integer auto_increment primary key, `col_enum_not_null_key` int);
SELECT X . `pk` FROM `table17_int` AS X LEFT JOIN `table30_int` AS Y USING ( `col_enum_not_null_key` ) WHERE X . `col_char_10_not_null_key` != '   you need to translate Views labels into other languages, consider installing the <a href=\" !path\">Internationalization</a> package\'s Views translation module.' LIMIT 7  /*Generated by THREAD_ID 1*/;

DROP TABLE table17_int;
DROP TABLE table30_int;