This file is indexed.

/usr/lib/mysql-testsuite/t/partition_federated.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
#
# Tests for partitioned FEDERATED
#
-- source include/have_partition.inc
-- source include/not_embedded.inc
-- source suite/federated/include/have_federated_db.inc

--disable_warnings
drop table if exists t1;
--enable_warnings

#
# Bug #22451 Partitions: duplicate results with engine=federated 
#

--error ER_PARTITION_MERGE_ERROR
create table t1 (s1 int) engine=federated
connection='mysql://root@localhost/federated/t1' partition by list (s1)
(partition p1 values in (1), partition p2 values in (2));

--echo End of 5.1 tests