This file is indexed.

/usr/share/mysql/mysql-test/t/gis2.test is in mariadb-test-5.5 5.5.36-1.

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
#
# MDEV-3934 Assertion `((keypart_map+1) & keypart_map) == 0' failed in _mi_pack_key with an index on a POINT column
#

CREATE TABLE t1 (
      id INT UNSIGNED NOT NULL AUTO_INCREMENT,
      point_data POINT NOT NULL,
      PRIMARY KEY (id),
      KEY idx_point_data(point_data)
) ENGINE=MyISAM;
INSERT t1 (point_data) VALUES
    (GeomFromText('Point(37.0248492 23.8512726)')),
    (GeomFromText('Point(38.0248492 23.8512726)'));
SELECT id FROM t1
WHERE ST_Contains(point_data, GeomFromText('Point(38.0248492 23.8512726)'));
DROP TABLE t1;