← 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:09 2016

Filename/home/vagrant/kohaclone/Koha/Schema/Result/CourseReserve.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11151µs56µsClass::C3::Componentised::::BEGIN@1.2556 Class::C3::Componentised::BEGIN@1.2556
11112µs26µsKoha::Schema::Result::CourseReserve::::BEGIN@13Koha::Schema::Result::CourseReserve::BEGIN@13
11111µs98µsKoha::Schema::Result::CourseReserve::::BEGIN@16Koha::Schema::Result::CourseReserve::BEGIN@16
11110µs21µsKoha::Schema::Result::CourseReserve::::BEGIN@14Koha::Schema::Result::CourseReserve::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1261µs
# spent 56µs (51+5) within Class::C3::Componentised::BEGIN@1.2556 which was called: # once (51µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1
use utf8;
# spent 56µs making 1 call to Class::C3::Componentised::BEGIN@1.2556 # spent 5µs making 1 call to utf8::import
2package Koha::Schema::Result::CourseReserve;
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::CourseReserve
10
11=cut
12
13240µs
# spent 26µs (12+14) within Koha::Schema::Result::CourseReserve::BEGIN@13 which was called: # once (12µs+14µs) by Class::C3::Componentised::ensure_class_loaded at line 13
use strict;
# spent 26µs making 1 call to Koha::Schema::Result::CourseReserve::BEGIN@13 # spent 14µs making 1 call to strict::import
14232µs
# spent 21µs (10+11) within Koha::Schema::Result::CourseReserve::BEGIN@14 which was called: # once (10µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 21µs making 1 call to Koha::Schema::Result::CourseReserve::BEGIN@14 # spent 11µs making 1 call to warnings::import
15
162185µs
# spent 98µs (11+87) within Koha::Schema::Result::CourseReserve::BEGIN@16 which was called: # once (11µs+87µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 98µs making 1 call to Koha::Schema::Result::CourseReserve::BEGIN@16 # spent 87µs making 1 call to base::import
17
18=head1 TABLE: C<course_reserves>
19
20=cut
21
221362µs__PACKAGE__->table("course_reserves");
# spent 362µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 cr_id
27
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
31
32=head2 course_id
33
34 data_type: 'integer'
35 is_foreign_key: 1
36 is_nullable: 0
37
38=head2 ci_id
39
40 data_type: 'integer'
41 is_foreign_key: 1
42 is_nullable: 0
43
44=head2 staff_note
45
46 data_type: 'mediumtext'
47 is_nullable: 1
48
49=head2 public_note
50
51 data_type: 'mediumtext'
52 is_nullable: 1
53
54=head2 timestamp
55
56 data_type: 'timestamp'
57 datetime_undef_if_invalid: 1
58 default_value: current_timestamp
59 is_nullable: 0
60
61=cut
62
6311.41ms__PACKAGE__->add_columns(
# spent 1.41ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns
64 "cr_id",
65 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
66 "course_id",
67 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
68 "ci_id",
69 { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
70 "staff_note",
71 { data_type => "mediumtext", is_nullable => 1 },
72 "public_note",
73 { data_type => "mediumtext", is_nullable => 1 },
74 "timestamp",
75 {
76 data_type => "timestamp",
77 datetime_undef_if_invalid => 1,
78 default_value => \"current_timestamp",
79 is_nullable => 0,
80 },
81);
82
83=head1 PRIMARY KEY
84
85=over 4
86
87=item * L</cr_id>
88
89=back
90
91=cut
92
93189µs__PACKAGE__->set_primary_key("cr_id");
# spent 89µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
94
95=head1 UNIQUE CONSTRAINTS
96
97=head2 C<pseudo_key>
98
99=over 4
100
101=item * L</course_id>
102
103=item * L</ci_id>
104
105=back
106
107=cut
108
109130µs__PACKAGE__->add_unique_constraint("pseudo_key", ["course_id", "ci_id"]);
110
111=head1 RELATIONS
112
113=head2 ci
114
115Type: belongs_to
116
117Related object: L<Koha::Schema::Result::CourseItem>
118
119=cut
120
1211317µs__PACKAGE__->belongs_to(
# spent 317µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
122 "ci",
123 "Koha::Schema::Result::CourseItem",
124 { ci_id => "ci_id" },
125 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
126);
127
128=head2 course
129
130Type: belongs_to
131
132Related object: L<Koha::Schema::Result::Course>
133
134=cut
135
1361164µs__PACKAGE__->belongs_to(
# spent 164µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
137 "course",
138 "Koha::Schema::Result::Course",
139 { course_id => "course_id" },
140 { is_deferrable => 1, on_delete => "RESTRICT", on_update => "RESTRICT" },
141);
142
143
144# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-09-02 09:46:54
145# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4RbSgGvSM5wH1jpE+deLlA
146
147
148# You can replace this text with custom content, and it will be preserved on regeneration
1491;