Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Browser.pm |
Statements | Executed 11 statements in 301µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 27µs | 30µs | BEGIN@1.1542 | Class::C3::Componentised::
1 | 1 | 1 | 10µs | 80µs | BEGIN@16 | Koha::Schema::Result::Browser::
1 | 1 | 1 | 9µs | 18µs | BEGIN@13 | Koha::Schema::Result::Browser::
1 | 1 | 1 | 8µs | 16µs | BEGIN@14 | Koha::Schema::Result::Browser::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | 2 | 68µs | 2 | 34µs | # spent 30µs (27+3) within Class::C3::Componentised::BEGIN@1.1542 which was called:
# once (27µs+3µs) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 30µs making 1 call to Class::C3::Componentised::BEGIN@1.1542
# spent 3µs making 1 call to utf8::import |
2 | package Koha::Schema::Result::Browser; | ||||
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::Browser | ||||
10 | |||||
11 | =cut | ||||
12 | |||||
13 | 2 | 38µs | 2 | 28µs | # spent 18µs (9+9) within Koha::Schema::Result::Browser::BEGIN@13 which was called:
# once (9µs+9µs) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 18µs making 1 call to Koha::Schema::Result::Browser::BEGIN@13
# spent 9µs making 1 call to strict::import |
14 | 2 | 37µs | 2 | 24µs | # spent 16µs (8+8) within Koha::Schema::Result::Browser::BEGIN@14 which was called:
# once (8µs+8µs) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 16µs making 1 call to Koha::Schema::Result::Browser::BEGIN@14
# spent 8µs making 1 call to warnings::import |
15 | |||||
16 | 2 | 122µs | 2 | 150µs | # spent 80µs (10+70) within Koha::Schema::Result::Browser::BEGIN@16 which was called:
# once (10µs+70µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 80µs making 1 call to Koha::Schema::Result::Browser::BEGIN@16
# spent 70µs making 1 call to base::import |
17 | |||||
18 | =head1 TABLE: C<browser> | ||||
19 | |||||
20 | =cut | ||||
21 | |||||
22 | 1 | 300ns | 1 | 350µs | __PACKAGE__->table("browser"); # spent 350µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
23 | |||||
24 | =head1 ACCESSORS | ||||
25 | |||||
26 | =head2 level | ||||
27 | |||||
28 | data_type: 'integer' | ||||
29 | is_nullable: 0 | ||||
30 | |||||
31 | =head2 classification | ||||
32 | |||||
33 | data_type: 'varchar' | ||||
34 | is_nullable: 0 | ||||
35 | size: 20 | ||||
36 | |||||
37 | =head2 description | ||||
38 | |||||
39 | data_type: 'varchar' | ||||
40 | is_nullable: 0 | ||||
41 | size: 255 | ||||
42 | |||||
43 | =head2 number | ||||
44 | |||||
45 | data_type: 'bigint' | ||||
46 | is_nullable: 0 | ||||
47 | |||||
48 | =head2 endnode | ||||
49 | |||||
50 | data_type: 'tinyint' | ||||
51 | is_nullable: 0 | ||||
52 | |||||
53 | =cut | ||||
54 | |||||
55 | 1 | 30µs | 1 | 1.95ms | __PACKAGE__->add_columns( # spent 1.95ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
56 | "level", | ||||
57 | { data_type => "integer", is_nullable => 0 }, | ||||
58 | "classification", | ||||
59 | { data_type => "varchar", is_nullable => 0, size => 20 }, | ||||
60 | "description", | ||||
61 | { data_type => "varchar", is_nullable => 0, size => 255 }, | ||||
62 | "number", | ||||
63 | { data_type => "bigint", is_nullable => 0 }, | ||||
64 | "endnode", | ||||
65 | { data_type => "tinyint", is_nullable => 0 }, | ||||
66 | ); | ||||
67 | |||||
68 | |||||
69 | # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 | ||||
70 | # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:eMoAXr+/JrrwEjJ3dRRwoA | ||||
71 | |||||
72 | |||||
73 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
74 | 1 | 5µs | 1; |