This file is indexed.

/usr/lib/pike7.8/modules/Sql.pmod/mysql_result.pike is in pike7.8-mysql 7.8.866-8.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
/*
 * $Id: 3c1cf69392701308016d0de8f11821a546c38ee3 $
 *
 * Glue for the Mysql-module
 */

#pike __REAL_VERSION__

// Cannot dump this since the #if constant(...) check below may depend
// on the presence of system libs at runtime.
constant dont_dump_program = 1;

#if constant(Mysql.mysql_result)
inherit Mysql.mysql_result;
#else /* !constant(Mysql.mysql_result) */
constant this_program_does_not_exist=1;
#endif /* constant(Mysql.mysql_result) */