This file is indexed.

/usr/share/perl5/SQL/Translator/Generator/DDL/MySQL.pm is in libsql-translator-perl 0.11024-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
package SQL::Translator::Generator::DDL::MySQL;

=head1 NAME

SQL::Translator::Generator::DDL::MySQL - A Moo based MySQL DDL generation
engine.

=head1 DESCRIPTION

I<documentation volunteers needed>

=cut

use Moo;

has quote_chars => ( is => 'ro', default => sub { +[qw(` `)] } );

with 'SQL::Translator::Generator::Role::Quote';

sub name_sep { q(.) }

1;