This file is indexed.

/usr/share/mysql/mysql-test/t/bug58669.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
17
18
19
20
21
22
--source include/not_embedded.inc

--echo #
--echo # Bug#58669: read_only not enforced on 5.5.x
--echo #

CREATE USER user1@localhost;
CREATE DATABASE db1;
GRANT ALL PRIVILEGES ON db1.* TO user1@localhost;
CREATE TABLE db1.t1(a INT);

connect (con1,localhost,user1,,);
connection con1;
SELECT CURRENT_USER();
SHOW VARIABLES LIKE "%read_only%";
--error ER_OPTION_PREVENTS_STATEMENT
INSERT INTO db1.t1 VALUES (1);

connection default;
disconnect con1;
DROP DATABASE db1;
DROP USER user1@localhost;