/usr/lib/mysql-testsuite/t/percona_bug1384568.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 | #
# Bug 1384568: EXPLAIN crashes server
#
CREATE TABLE t(a INT KEY, b BLOB) ENGINE=MyISAM;
# may not crash on debug or optimized builds but always crahes on ASAN builds
SELECT * FROM t x WHERE (a, b) IN ((0, 0), (1,0));
DROP TABLE t;
CREATE TABLE t(a INT KEY, b BLOB) ENGINE=MyISAM;
# may not crash on debug or optimized builds but always crahes on ASAN builds
EXPLAIN SELECT * FROM t x WHERE (a, b) IN ((0, 0), (1,0));
DROP TABLE t;
|