This file is indexed.

/usr/share/doc/libsql-abstract-perl/examples/dbic-console.pl is in libsql-abstract-perl 1.85-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
#!/usr/bin/perl

use warnings;
use strict;

use DBIx::Class::Storage::Debug::PrettyPrint;

my $pp = DBIx::Class::Storage::Debug::PrettyPrint->new({
   profile => 'console',
   show_progress => 1,
});

$pp->txn_begin;
$pp->query_start("SELECT a, b, c FROM foo WHERE foo.a =1 and foo.b LIKE ?", q('station'));
sleep 1;
$pp->query_end("SELECT a, b, c FROM foo WHERE foo.a =1 and foo.b LIKE ?", q('station'));
$pp->txn_commit;