This file is indexed.

/usr/share/mediawiki-extensions/math/db/math.mssql.sql is in mediawiki-extensions-math 2:1.0+git20120528-8.

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
--
-- Used by the math module to keep track
-- of previously-rendered items.
--
CREATE TABLE /*$wgDBprefix*/math (
   math_inputhash varbinary(16) NOT NULL PRIMARY KEY,
   math_outputhash varbinary(16) NOT NULL,
   math_html_conservativeness tinyint NOT NULL,
   math_html NVARCHAR(MAX),
   math_mathml NVARCHAR(MAX),
);