← Index
NYTProf Performance Profile   « line view »
For starman worker -M FindBin --max-requests 50 --workers 2 --user=kohadev-koha --group kohadev-koha --pid /var/run/koha/kohadev/plack.pid --daemonize --access-log /var/log/koha/kohadev/plack.log --error-log /var/log/koha/kohadev/plack-error.log -E deployment --socket /var/run/koha/kohadev/plack.sock /etc/koha/sites/kohadev/plack.psgi
  Run on Fri Jan 8 14:16:49 2016
Reported on Fri Jan 8 14:23:08 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/SavedSql.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111117µs128µsClass::C3::Componentised::::BEGIN@1.1611 Class::C3::Componentised::BEGIN@1.1611
11126µs38µsKoha::Schema::Result::SavedSql::::BEGIN@13Koha::Schema::Result::SavedSql::BEGIN@13
11117µs24µsKoha::Schema::Result::SavedSql::::BEGIN@14Koha::Schema::Result::SavedSql::BEGIN@14
11117µs84µsKoha::Schema::Result::SavedSql::::BEGIN@16Koha::Schema::Result::SavedSql::BEGIN@16
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
12139µs
# spent 128µs (117+11) within Class::C3::Componentised::BEGIN@1.1611 which was called: # once (117µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 128µs making 1 call to Class::C3::Componentised::BEGIN@1.1611 # spent 11µs making 1 call to utf8::import
2package Koha::Schema::Result::SavedSql;
3
4# Created by DBIx::Class::Schema::Loader
5# DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7=head1 NAME
8
9Koha::Schema::Result::SavedSql
10
11=cut
12
13249µs
# spent 38µs (26+12) within Koha::Schema::Result::SavedSql::BEGIN@13 which was called: # once (26µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 38µs making 1 call to Koha::Schema::Result::SavedSql::BEGIN@13 # spent 12µs making 1 call to strict::import
14232µs
# spent 24µs (17+7) within Koha::Schema::Result::SavedSql::BEGIN@14 which was called: # once (17µs+7µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 24µs making 1 call to Koha::Schema::Result::SavedSql::BEGIN@14 # spent 7µs making 1 call to warnings::import
15
162152µs
# spent 84µs (17+68) within Koha::Schema::Result::SavedSql::BEGIN@16 which was called: # once (17µs+68µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 84µs making 1 call to Koha::Schema::Result::SavedSql::BEGIN@16 # spent 68µs making 1 call to base::import
17
18=head1 TABLE: C<saved_sql>
19
20=cut
21
221293µs__PACKAGE__->table("saved_sql");
# spent 293µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 borrowernumber
33
34 data_type: 'integer'
35 is_nullable: 1
36
37=head2 date_created
38
39 data_type: 'datetime'
40 datetime_undef_if_invalid: 1
41 is_nullable: 1
42
43=head2 last_modified
44
45 data_type: 'datetime'
46 datetime_undef_if_invalid: 1
47 is_nullable: 1
48
49=head2 savedsql
50
51 data_type: 'text'
52 is_nullable: 1
53
54=head2 last_run
55
56 data_type: 'datetime'
57 datetime_undef_if_invalid: 1
58 is_nullable: 1
59
60=head2 report_name
61
62 data_type: 'varchar'
63 default_value: (empty string)
64 is_nullable: 0
65 size: 255
66
67=head2 type
68
69 data_type: 'varchar'
70 is_nullable: 1
71 size: 255
72
73=head2 notes
74
75 data_type: 'text'
76 is_nullable: 1
77
78=head2 cache_expiry
79
80 data_type: 'integer'
81 default_value: 300
82 is_nullable: 0
83
84=head2 public
85
86 data_type: 'tinyint'
87 default_value: 0
88 is_nullable: 0
89
90=head2 report_area
91
92 data_type: 'varchar'
93 is_nullable: 1
94 size: 6
95
96=head2 report_group
97
98 data_type: 'varchar'
99 is_nullable: 1
100 size: 80
101
102=head2 report_subgroup
103
104 data_type: 'varchar'
105 is_nullable: 1
106 size: 80
107
108=cut
109
11015.26ms__PACKAGE__->add_columns(
# spent 5.26ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
111 "id",
112 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
113 "borrowernumber",
114 { data_type => "integer", is_nullable => 1 },
115 "date_created",
116 {
117 data_type => "datetime",
118 datetime_undef_if_invalid => 1,
119 is_nullable => 1,
120 },
121 "last_modified",
122 {
123 data_type => "datetime",
124 datetime_undef_if_invalid => 1,
125 is_nullable => 1,
126 },
127 "savedsql",
128 { data_type => "text", is_nullable => 1 },
129 "last_run",
130 {
131 data_type => "datetime",
132 datetime_undef_if_invalid => 1,
133 is_nullable => 1,
134 },
135 "report_name",
136 { data_type => "varchar", default_value => "", is_nullable => 0, size => 255 },
137 "type",
138 { data_type => "varchar", is_nullable => 1, size => 255 },
139 "notes",
140 { data_type => "text", is_nullable => 1 },
141 "cache_expiry",
142 { data_type => "integer", default_value => 300, is_nullable => 0 },
143 "public",
144 { data_type => "tinyint", default_value => 0, is_nullable => 0 },
145 "report_area",
146 { data_type => "varchar", is_nullable => 1, size => 6 },
147 "report_group",
148 { data_type => "varchar", is_nullable => 1, size => 80 },
149 "report_subgroup",
150 { data_type => "varchar", is_nullable => 1, size => 80 },
151);
152
153=head1 PRIMARY KEY
154
155=over 4
156
157=item * L</id>
158
159=back
160
161=cut
162
163196µs__PACKAGE__->set_primary_key("id");
# spent 96µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
164
165
166# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-24 09:58:16
167# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eGWRRzpe1+EBialePAIhMQ
168
169
170# You can replace this text with custom content, and it will be preserved on regeneration
1711;