Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Zebraqueue.pm |
Statements | Executed 0 statements in 0s |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 87µs | 90µs | BEGIN@1.2095 | Class::C3::Componentised::
28 | 4 | 1 | 14µs | 14µs | CORE:match (opcode) | Class::C3::Componentised::
1 | 1 | 1 | 10µs | 82µs | BEGIN@16 | Koha::Schema::Result::Zebraqueue::
1 | 1 | 1 | 10µs | 18µs | BEGIN@13 | Koha::Schema::Result::Zebraqueue::
1 | 1 | 1 | 8µs | 14µs | BEGIN@14 | Koha::Schema::Result::Zebraqueue::
1 | 1 | 1 | 2µs | 2µs | CORE:qr (opcode) | Class::C3::Componentised::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 94µs | # spent 90µs (87+4) within Class::C3::Componentised::BEGIN@1.2095 which was called:
# once (87µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 90µs making 1 call to Class::C3::Componentised::BEGIN@1.2095
# spent 4µs making 1 call to utf8::import | ||
2 | package Koha::Schema::Result::Zebraqueue; | ||||
3 | |||||
4 | # Created by DBIx::Class::Schema::Loader | ||||
5 | # DO NOT MODIFY THE FIRST PART OF THIS FILE | ||||
6 | |||||
7 | =head1 NAME | ||||
8 | |||||
9 | Koha::Schema::Result::Zebraqueue | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 27µs | # spent 18µs (10+9) within Koha::Schema::Result::Zebraqueue::BEGIN@13 which was called:
# once (10µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 18µs making 1 call to Koha::Schema::Result::Zebraqueue::BEGIN@13
# spent 9µs making 1 call to strict::import | ||
14 | 2 | 20µs | # spent 14µs (8+6) within Koha::Schema::Result::Zebraqueue::BEGIN@14 which was called:
# once (8µs+6µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 14µs making 1 call to Koha::Schema::Result::Zebraqueue::BEGIN@14
# spent 6µs making 1 call to warnings::import | ||
15 | |||||
16 | 2 | 153µs | # spent 82µs (10+71) within Koha::Schema::Result::Zebraqueue::BEGIN@16 which was called:
# once (10µs+71µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 82µs making 1 call to Koha::Schema::Result::Zebraqueue::BEGIN@16
# spent 71µs making 1 call to base::import | ||
17 | |||||
18 | =head1 TABLE: C<zebraqueue> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 335µs | __PACKAGE__->table("zebraqueue"); # spent 335µ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 biblio_auth_number | ||||
33 | |||||
34 | data_type: 'bigint' | ||||
35 | default_value: 0 | ||||
36 | extra: {unsigned => 1} | ||||
37 | is_nullable: 0 | ||||
38 | |||||
39 | =head2 operation | ||||
40 | |||||
41 | data_type: 'char' | ||||
42 | default_value: (empty string) | ||||
43 | is_nullable: 0 | ||||
44 | size: 20 | ||||
45 | |||||
46 | =head2 server | ||||
47 | |||||
48 | data_type: 'char' | ||||
49 | default_value: (empty string) | ||||
50 | is_nullable: 0 | ||||
51 | size: 20 | ||||
52 | |||||
53 | =head2 done | ||||
54 | |||||
55 | data_type: 'integer' | ||||
56 | default_value: 0 | ||||
57 | is_nullable: 0 | ||||
58 | |||||
59 | =head2 time | ||||
60 | |||||
61 | data_type: 'timestamp' | ||||
62 | datetime_undef_if_invalid: 1 | ||||
63 | default_value: current_timestamp | ||||
64 | is_nullable: 0 | ||||
65 | |||||
66 | =cut | ||||
67 | |||||
68 | 1 | 3.33ms | __PACKAGE__->add_columns( # spent 3.33ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns | ||
69 | "id", | ||||
70 | { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, | ||||
71 | "biblio_auth_number", | ||||
72 | { | ||||
73 | data_type => "bigint", | ||||
74 | default_value => 0, | ||||
75 | extra => { unsigned => 1 }, | ||||
76 | is_nullable => 0, | ||||
77 | }, | ||||
78 | "operation", | ||||
79 | { data_type => "char", default_value => "", is_nullable => 0, size => 20 }, | ||||
80 | "server", | ||||
81 | { data_type => "char", default_value => "", is_nullable => 0, size => 20 }, | ||||
82 | "done", | ||||
83 | { data_type => "integer", default_value => 0, is_nullable => 0 }, | ||||
84 | "time", | ||||
85 | { | ||||
86 | data_type => "timestamp", | ||||
87 | datetime_undef_if_invalid => 1, | ||||
88 | default_value => \"current_timestamp", | ||||
89 | is_nullable => 0, | ||||
90 | }, | ||||
91 | ); | ||||
92 | |||||
93 | =head1 PRIMARY KEY | ||||
94 | |||||
95 | =over 4 | ||||
96 | |||||
97 | =item * L</id> | ||||
98 | |||||
99 | =back | ||||
100 | |||||
101 | =cut | ||||
102 | |||||
103 | 1 | 86µs | __PACKAGE__->set_primary_key("id"); # spent 86µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key | ||
104 | |||||
105 | |||||
106 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
107 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vU9ROiVUwXc7jhKt728dRg | ||||
108 | |||||
109 | |||||
110 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
111 | 1; | ||||
# spent 14µs within Class::C3::Componentised::CORE:match which was called 28 times, avg 486ns/call:
# 11 times (7µs+0s) by Class::C3::Componentised::load_components at line 72 of Class/C3/Componentised.pm, avg 600ns/call
# 11 times (3µs+0s) by Class::C3::Componentised::load_components at line 71 of Class/C3/Componentised.pm, avg 273ns/call
# 5 times (2µs+0s) by Class::C3::Componentised::load_own_components at line 87 of Class/C3/Componentised.pm, avg 340ns/call
# once (2µs+0s) by base::import at line 55 of Class/C3/Componentised.pm | |||||
# spent 2µs within Class::C3::Componentised::CORE:qr which was called:
# once (2µs+0s) by base::import at line 57 of Class/C3/Componentised.pm |