This file is indexed.

/usr/share/perl5/DBIx/Class/InflateColumn/FS/ResultSet.pm is in libdbix-class-inflatecolumn-fs-perl 0.01007-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
23
24
25
26
27
28
29
30
31
32
33
34
package DBIx::Class::InflateColumn::FS::ResultSet;
use base qw/DBIx::Class::ResultSet/;

=head1 NAME

DBIx::Class::InflateColumn::FS::ResultSet - FS columns resultset class

=head1 DESCRIPTION

Derive from this class if you intend to provide a custom resultset
class for result sources including L<DBIx::Class::InflateColumn::FS>
columns.

=head1 METHODS

=head2 delete

Delete associated file system storage for each row in a result set.

=cut

sub delete { shift->delete_all }

=head1 AUTHOR

Marc Mims <marc@questright.com>

=head1 LICENSE

You may distribute this code under the same terms as Perl itself.

=cut

1;