← 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/Review.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11125µs28µsClass::C3::Componentised::::BEGIN@1.295 Class::C3::Componentised::BEGIN@1.295
11111µs85µsKoha::Schema::Result::Review::::BEGIN@16Koha::Schema::Result::Review::BEGIN@16
1119µs17µsKoha::Schema::Result::Review::::BEGIN@13Koha::Schema::Result::Review::BEGIN@13
1118µs15µsKoha::Schema::Result::Review::::BEGIN@14Koha::Schema::Result::Review::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1232µs
# spent 28µs (25+4) within Class::C3::Componentised::BEGIN@1.295 which was called: # once (25µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 28µs making 1 call to Class::C3::Componentised::BEGIN@1.295 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Review;
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::Review
10
11=cut
12
13225µs
# spent 17µs (9+8) within Koha::Schema::Result::Review::BEGIN@13 which was called: # once (9µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 17µs making 1 call to Koha::Schema::Result::Review::BEGIN@13 # spent 8µs making 1 call to strict::import
14221µs
# spent 15µs (8+6) within Koha::Schema::Result::Review::BEGIN@14 which was called: # once (8µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 15µs making 1 call to Koha::Schema::Result::Review::BEGIN@14 # spent 6µs making 1 call to warnings::import
15
162159µs
# spent 85µs (11+74) within Koha::Schema::Result::Review::BEGIN@16 which was called: # once (11µs+74µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 85µs making 1 call to Koha::Schema::Result::Review::BEGIN@16 # spent 74µs making 1 call to base::import
17
18=head1 TABLE: C<reviews>
19
20=cut
21
221315µs__PACKAGE__->table("reviews");
# spent 315µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 reviewid
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_foreign_key: 1
36 is_nullable: 1
37
38=head2 biblionumber
39
40 data_type: 'integer'
41 is_foreign_key: 1
42 is_nullable: 1
43
44=head2 review
45
46 data_type: 'text'
47 is_nullable: 1
48
49=head2 approved
50
51 data_type: 'tinyint'
52 is_nullable: 1
53
54=head2 datereviewed
55
56 data_type: 'datetime'
57 datetime_undef_if_invalid: 1
58 is_nullable: 1
59
60=cut
61
6211.73ms__PACKAGE__->add_columns(
# spent 1.73ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
63 "reviewid",
64 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
65 "borrowernumber",
66 { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
67 "biblionumber",
68 { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
69 "review",
70 { data_type => "text", is_nullable => 1 },
71 "approved",
72 { data_type => "tinyint", is_nullable => 1 },
73 "datereviewed",
74 {
75 data_type => "datetime",
76 datetime_undef_if_invalid => 1,
77 is_nullable => 1,
78 },
79);
80
81=head1 PRIMARY KEY
82
83=over 4
84
85=item * L</reviewid>
86
87=back
88
89=cut
90
91178µs__PACKAGE__->set_primary_key("reviewid");
# spent 78µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
92
93=head1 RELATIONS
94
95=head2 biblionumber
96
97Type: belongs_to
98
99Related object: L<Koha::Schema::Result::Biblio>
100
101=cut
102
1031371µs__PACKAGE__->belongs_to(
# spent 371µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
104 "biblionumber",
105 "Koha::Schema::Result::Biblio",
106 { biblionumber => "biblionumber" },
107 {
108 is_deferrable => 1,
109 join_type => "LEFT",
110 on_delete => "CASCADE",
111 on_update => "CASCADE",
112 },
113);
114
115=head2 borrowernumber
116
117Type: belongs_to
118
119Related object: L<Koha::Schema::Result::Borrower>
120
121=cut
122
1231200µs__PACKAGE__->belongs_to(
# spent 200µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
124 "borrowernumber",
125 "Koha::Schema::Result::Borrower",
126 { borrowernumber => "borrowernumber" },
127 {
128 is_deferrable => 1,
129 join_type => "LEFT",
130 on_delete => "SET NULL",
131 on_update => "CASCADE",
132 },
133);
134
135
136# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-07-11 09:26:55
137# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:u+R08bCdVQA697aPo9zEUA
138
139
140# You can replace this text with custom content, and it will be preserved on regeneration
1411;