← 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/Branchrelation.pm
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11139µs48µsKoha::Schema::Result::Branchrelation::::BEGIN@14Koha::Schema::Result::Branchrelation::BEGIN@14
11129µs33µsClass::C3::Componentised::::BEGIN@1.360 Class::C3::Componentised::BEGIN@1.360
11111µs91µsKoha::Schema::Result::Branchrelation::::BEGIN@16Koha::Schema::Result::Branchrelation::BEGIN@16
11110µs21µsKoha::Schema::Result::Branchrelation::::BEGIN@13Koha::Schema::Result::Branchrelation::BEGIN@13
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1236µs
# spent 33µs (29+4) within Class::C3::Componentised::BEGIN@1.360 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.360 # spent 4µs making 1 call to utf8::import
2package Koha::Schema::Result::Branchrelation;
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::Branchrelation
10
11=cut
12
13231µs
# spent 21µs (10+10) within Koha::Schema::Result::Branchrelation::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::Branchrelation::BEGIN@13 # spent 10µs making 1 call to strict::import
14257µs
# spent 48µs (39+9) within Koha::Schema::Result::Branchrelation::BEGIN@14 which was called: # once (39µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 14
use warnings;
# spent 48µs making 1 call to Koha::Schema::Result::Branchrelation::BEGIN@14 # spent 9µs making 1 call to warnings::import
15
162172µs
# spent 91µs (11+80) within Koha::Schema::Result::Branchrelation::BEGIN@16 which was called: # once (11µs+80µs) by Class::C3::Componentised::ensure_class_loaded at line 16
use base 'DBIx::Class::Core';
# spent 91µs making 1 call to Koha::Schema::Result::Branchrelation::BEGIN@16 # spent 80µs making 1 call to base::import
17
18=head1 TABLE: C<branchrelations>
19
20=cut
21
221273µs__PACKAGE__->table("branchrelations");
# spent 273µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
23
24=head1 ACCESSORS
25
26=head2 branchcode
27
28 data_type: 'varchar'
29 default_value: (empty string)
30 is_foreign_key: 1
31 is_nullable: 0
32 size: 10
33
34=head2 categorycode
35
36 data_type: 'varchar'
37 default_value: (empty string)
38 is_foreign_key: 1
39 is_nullable: 0
40 size: 10
41
42=cut
43
441548µs__PACKAGE__->add_columns(
# spent 548µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
45 "branchcode",
46 {
47 data_type => "varchar",
48 default_value => "",
49 is_foreign_key => 1,
50 is_nullable => 0,
51 size => 10,
52 },
53 "categorycode",
54 {
55 data_type => "varchar",
56 default_value => "",
57 is_foreign_key => 1,
58 is_nullable => 0,
59 size => 10,
60 },
61);
62
63=head1 PRIMARY KEY
64
65=over 4
66
67=item * L</branchcode>
68
69=item * L</categorycode>
70
71=back
72
73=cut
74
75183µs__PACKAGE__->set_primary_key("branchcode", "categorycode");
# spent 83µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
76
77=head1 RELATIONS
78
79=head2 branchcode
80
81Type: belongs_to
82
83Related object: L<Koha::Schema::Result::Branch>
84
85=cut
86
871423µs__PACKAGE__->belongs_to(
# spent 423µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
88 "branchcode",
89 "Koha::Schema::Result::Branch",
90 { branchcode => "branchcode" },
91 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
92);
93
94=head2 categorycode
95
96Type: belongs_to
97
98Related object: L<Koha::Schema::Result::Branchcategory>
99
100=cut
101
1021501µs__PACKAGE__->belongs_to(
# spent 501µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
103 "categorycode",
104 "Koha::Schema::Result::Branchcategory",
105 { categorycode => "categorycode" },
106 { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
107);
108
109
110# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
111# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lBOq8k+wurbp633kbi8tVg
112
113
114# You can replace this text with custom content, and it will be preserved on regeneration
1151;