← 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/Aqbasketgroup.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11129µs33µsClass::C3::Componentised::::BEGIN@1.171 Class::C3::Componentised::BEGIN@1.171
11110µs21µsKoha::Schema::Result::Aqbasketgroup::::BEGIN@13Koha::Schema::Result::Aqbasketgroup::BEGIN@13
11110µs88µsKoha::Schema::Result::Aqbasketgroup::::BEGIN@16Koha::Schema::Result::Aqbasketgroup::BEGIN@16
1119µs17µsKoha::Schema::Result::Aqbasketgroup::::BEGIN@14Koha::Schema::Result::Aqbasketgroup::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1237µs
# spent 33µs (29+4) within Class::C3::Componentised::BEGIN@1.171 which was called: # once (29µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 33µs making 1 call to Class::C3::Componentised::BEGIN@1.171 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Aqbasketgroup;
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::Aqbasketgroup
10
11=cut
12
13231µs
# spent 21µs (10+10) within Koha::Schema::Result::Aqbasketgroup::BEGIN@13 which was called: # once (10µs+10µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 21µs making 1 call to Koha::Schema::Result::Aqbasketgroup::BEGIN@13 # spent 10µs making 1 call to strict::import
14225µs
# spent 17µs (9+8) within Koha::Schema::Result::Aqbasketgroup::BEGIN@14 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 17µs making 1 call to Koha::Schema::Result::Aqbasketgroup::BEGIN@14 # spent 8µs making 1 call to warnings::import
15
162166µs
# spent 88µs (10+78) within Koha::Schema::Result::Aqbasketgroup::BEGIN@16 which was called: # once (10µs+78µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 88µs making 1 call to Koha::Schema::Result::Aqbasketgroup::BEGIN@16 # spent 78µs making 1 call to base::import
17
18=head1 TABLE: C<aqbasketgroups>
19
20=cut
21
221345µs__PACKAGE__->table("aqbasketgroups");
# spent 345µ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 name
33
34 data_type: 'varchar'
35 is_nullable: 1
36 size: 50
37
38=head2 closed
39
40 data_type: 'tinyint'
41 is_nullable: 1
42
43=head2 booksellerid
44
45 data_type: 'integer'
46 is_foreign_key: 1
47 is_nullable: 0
48
49=head2 deliveryplace
50
51 data_type: 'varchar'
52 is_nullable: 1
53 size: 10
54
55=head2 freedeliveryplace
56
57 data_type: 'text'
58 is_nullable: 1
59
60=head2 deliverycomment
61
62 data_type: 'varchar'
63 is_nullable: 1
64 size: 255
65
66=head2 billingplace
67
68 data_type: 'varchar'
69 is_nullable: 1
70 size: 10
71
72=cut
73
7412.72ms__PACKAGE__->add_columns(
# spent 2.72ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
75 "id",
76 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
77 "name",
78 { data_type => "varchar", is_nullable => 1, size => 50 },
79 "closed",
80 { data_type => "tinyint", is_nullable => 1 },
81 "booksellerid",
82 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
83 "deliveryplace",
84 { data_type => "varchar", is_nullable => 1, size => 10 },
85 "freedeliveryplace",
86 { data_type => "text", is_nullable => 1 },
87 "deliverycomment",
88 { data_type => "varchar", is_nullable => 1, size => 255 },
89 "billingplace",
90 { data_type => "varchar", is_nullable => 1, size => 10 },
91);
92
93=head1 PRIMARY KEY
94
95=over 4
96
97=item * L</id>
98
99=back
100
101=cut
102
103181µs__PACKAGE__->set_primary_key("id");
# spent 81µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
104
105=head1 RELATIONS
106
107=head2 aqbaskets
108
109Type: has_many
110
111Related object: L<Koha::Schema::Result::Aqbasket>
112
113=cut
114
1151367µs__PACKAGE__->has_many(
# spent 367µs making 1 call to DBIx::Class::Relationship::HasMany::has_many
116 "aqbaskets",
117 "Koha::Schema::Result::Aqbasket",
118 { "foreign.basketgroupid" => "self.id" },
119 { cascade_copy => 0, cascade_delete => 0 },
120);
121
122=head2 booksellerid
123
124Type: belongs_to
125
126Related object: L<Koha::Schema::Result::Aqbookseller>
127
128=cut
129
1301657µs__PACKAGE__->belongs_to(
# spent 657µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
131 "booksellerid",
132 "Koha::Schema::Result::Aqbookseller",
133 { id => "booksellerid" },
134 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
135);
136
137
138# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
139# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tT40YZgK7gOfNG3DVFTHiA
140
141
142# You can replace this text with custom content, and it will be preserved on regeneration
1431;