This file is indexed.

/usr/share/perl5/Alzabo/Runtime/ColumnDefinition.pm is in libalzabo-perl 0.92-3.

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
35
36
37
38
39
40
41
42
43
44
45
package Alzabo::Runtime::ColumnDefinition;

use strict;
use vars qw($VERSION);

use Alzabo::Runtime;

use base qw(Alzabo::ColumnDefinition);

$VERSION = 2.0;

1;

__END__

=head1 NAME

Alzabo::Runtime::ColumnDefinition - Column definition objects

=head1 SYNOPSIS

  use Alzabo::Runtime::ColumnDefinition;

=head1 DESCRIPTION

This object holds information on a column that might need to be shared
with another column.  The reason for this is that if a column is a key
in two or more tables, then some of the information related to that
column should change automatically for all tables (and all columns)
whenever it is changed anywhere.  Right now this is only type
('VARCHAR', 'NUMBER', etc) information.  This object also has an
'owner', which is the column which created it.

=head1 INHERITS FROM

C<Alzabo::ColumnDefinition>


Note: all relevant documentation from the superclass has been merged into this document.

=for pod_merge METHODS

Dave Rolsky, <autarch@urth.org>

=cut