Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Statistic.pm |
Statements | Executed 11 statements in 486µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 31µs | 36µs | BEGIN@1.2862 | Class::C3::Componentised::
1 | 1 | 1 | 12µs | 24µs | BEGIN@13 | Koha::Schema::Result::Statistic::
1 | 1 | 1 | 10µs | 92µs | BEGIN@16 | Koha::Schema::Result::Statistic::
1 | 1 | 1 | 9µs | 20µs | BEGIN@14 | Koha::Schema::Result::Statistic::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 82µs | 2 | 41µs | # spent 36µs (31+5) within Class::C3::Componentised::BEGIN@1.2862 which was called:
# once (31µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 36µs making 1 call to Class::C3::Componentised::BEGIN@1.2862
# spent 5µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::Statistic; | ||||
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::Statistic | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 45µs | 2 | 36µs | # spent 24µs (12+12) within Koha::Schema::Result::Statistic::BEGIN@13 which was called:
# once (12µs+12µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 24µs making 1 call to Koha::Schema::Result::Statistic::BEGIN@13
# spent 12µs making 1 call to strict::import |
14 | 2 | 43µs | 2 | 32µs | # spent 20µs (9+11) within Koha::Schema::Result::Statistic::BEGIN@14 which was called:
# once (9µs+11µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 20µs making 1 call to Koha::Schema::Result::Statistic::BEGIN@14
# spent 11µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 251µs | 2 | 174µs | # spent 92µs (10+82) within Koha::Schema::Result::Statistic::BEGIN@16 which was called:
# once (10µs+82µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 92µs making 1 call to Koha::Schema::Result::Statistic::BEGIN@16
# spent 82µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<statistics> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 20µs | 1 | 349µs | __PACKAGE__->table("statistics"); # spent 349µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
23 | |||||
24 | =head1 ACCESSORS | ||||
25 | |||||
26 | =head2 datetime | ||||
27 | |||||
28 | data_type: 'datetime' | ||||
29 | datetime_undef_if_invalid: 1 | ||||
30 | is_nullable: 1 | ||||
31 | |||||
32 | =head2 branch | ||||
33 | |||||
34 | data_type: 'varchar' | ||||
35 | is_nullable: 1 | ||||
36 | size: 10 | ||||
37 | |||||
38 | =head2 proccode | ||||
39 | |||||
40 | data_type: 'varchar' | ||||
41 | is_nullable: 1 | ||||
42 | size: 4 | ||||
43 | |||||
44 | =head2 value | ||||
45 | |||||
46 | data_type: 'double precision' | ||||
47 | is_nullable: 1 | ||||
48 | size: [16,4] | ||||
49 | |||||
50 | =head2 type | ||||
51 | |||||
52 | data_type: 'varchar' | ||||
53 | is_nullable: 1 | ||||
54 | size: 16 | ||||
55 | |||||
56 | =head2 other | ||||
57 | |||||
58 | data_type: 'mediumtext' | ||||
59 | is_nullable: 1 | ||||
60 | |||||
61 | =head2 usercode | ||||
62 | |||||
63 | data_type: 'varchar' | ||||
64 | is_nullable: 1 | ||||
65 | size: 10 | ||||
66 | |||||
67 | =head2 itemnumber | ||||
68 | |||||
69 | data_type: 'integer' | ||||
70 | is_nullable: 1 | ||||
71 | |||||
72 | =head2 itemtype | ||||
73 | |||||
74 | data_type: 'varchar' | ||||
75 | is_nullable: 1 | ||||
76 | size: 10 | ||||
77 | |||||
78 | =head2 borrowernumber | ||||
79 | |||||
80 | data_type: 'integer' | ||||
81 | is_nullable: 1 | ||||
82 | |||||
83 | =head2 associatedborrower | ||||
84 | |||||
85 | data_type: 'integer' | ||||
86 | is_nullable: 1 | ||||
87 | |||||
88 | =head2 ccode | ||||
89 | |||||
90 | data_type: 'varchar' | ||||
91 | is_nullable: 1 | ||||
92 | size: 10 | ||||
93 | |||||
94 | =cut | ||||
95 | |||||
96 | 1 | 29µs | 1 | 5.37ms | __PACKAGE__->add_columns( # spent 5.37ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
97 | "datetime", | ||||
98 | { | ||||
99 | data_type => "datetime", | ||||
100 | datetime_undef_if_invalid => 1, | ||||
101 | is_nullable => 1, | ||||
102 | }, | ||||
103 | "branch", | ||||
104 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
105 | "proccode", | ||||
106 | { data_type => "varchar", is_nullable => 1, size => 4 }, | ||||
107 | "value", | ||||
108 | { data_type => "double precision", is_nullable => 1, size => [16, 4] }, | ||||
109 | "type", | ||||
110 | { data_type => "varchar", is_nullable => 1, size => 16 }, | ||||
111 | "other", | ||||
112 | { data_type => "mediumtext", is_nullable => 1 }, | ||||
113 | "usercode", | ||||
114 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
115 | "itemnumber", | ||||
116 | { data_type => "integer", is_nullable => 1 }, | ||||
117 | "itemtype", | ||||
118 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
119 | "borrowernumber", | ||||
120 | { data_type => "integer", is_nullable => 1 }, | ||||
121 | "associatedborrower", | ||||
122 | { data_type => "integer", is_nullable => 1 }, | ||||
123 | "ccode", | ||||
124 | { data_type => "varchar", is_nullable => 1, size => 10 }, | ||||
125 | ); | ||||
126 | |||||
127 | |||||
128 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
129 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:THELVmdFFi1RCI4DfqwGIw | ||||
130 | |||||
131 | |||||
132 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
133 | 1 | 15µs | 1; |