| Filename | /home/vagrant/kohaclone/Koha/Schema/Result/Printer.pm |
| Statements | Executed 12 statements in 271µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 7µs | 12µs | Koha::Schema::Result::Printer::BEGIN@16 |
| 1 | 1 | 1 | 3µs | 3µs | Class::C3::Componentised::BEGIN@1.1476 |
| 1 | 1 | 1 | 100ns | 100ns | Koha::Schema::Result::Printer::BEGIN@13 |
| 1 | 1 | 1 | 100ns | 100ns | Koha::Schema::Result::Printer::BEGIN@14 |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | 2 | 100ns | 2 | 3µs | # spent 3µs within Class::C3::Componentised::BEGIN@1.1476 which was called:
# once (3µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 1 # spent 3µs making 1 call to Class::C3::Componentised::BEGIN@1.1476
# spent 0s making 1 call to utf8::import |
| 2 | package Koha::Schema::Result::Printer; | ||||
| 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::Printer | ||||
| 10 | |||||
| 11 | =cut | ||||
| 12 | |||||
| 13 | 2 | 300ns | 2 | 100ns | # spent 100ns within Koha::Schema::Result::Printer::BEGIN@13 which was called:
# once (100ns+0s) by Class::C3::Componentised::ensure_class_loaded at line 13 # spent 100ns making 1 call to Koha::Schema::Result::Printer::BEGIN@13
# spent 0s making 1 call to strict::import |
| 14 | 2 | 100ns | 2 | 100ns | # spent 100ns within Koha::Schema::Result::Printer::BEGIN@14 which was called:
# once (100ns+0s) by Class::C3::Componentised::ensure_class_loaded at line 14 # spent 100ns making 1 call to Koha::Schema::Result::Printer::BEGIN@14
# spent 0s making 1 call to warnings::import |
| 15 | |||||
| 16 | 2 | 157µs | 2 | 16µs | # spent 12µs (7+5) within Koha::Schema::Result::Printer::BEGIN@16 which was called:
# once (7µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 16 # spent 12µs making 1 call to Koha::Schema::Result::Printer::BEGIN@16
# spent 5µs making 1 call to base::import |
| 17 | |||||
| 18 | =head1 TABLE: C<printers> | ||||
| 19 | |||||
| 20 | =cut | ||||
| 21 | |||||
| 22 | 1 | 41µs | 1 | 545µs | __PACKAGE__->table("printers"); # spent 545µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table |
| 23 | |||||
| 24 | =head1 ACCESSORS | ||||
| 25 | |||||
| 26 | =head2 printername | ||||
| 27 | |||||
| 28 | data_type: 'varchar' | ||||
| 29 | default_value: (empty string) | ||||
| 30 | is_nullable: 0 | ||||
| 31 | size: 40 | ||||
| 32 | |||||
| 33 | =head2 printqueue | ||||
| 34 | |||||
| 35 | data_type: 'varchar' | ||||
| 36 | is_nullable: 1 | ||||
| 37 | size: 20 | ||||
| 38 | |||||
| 39 | =head2 printtype | ||||
| 40 | |||||
| 41 | data_type: 'varchar' | ||||
| 42 | is_nullable: 1 | ||||
| 43 | size: 20 | ||||
| 44 | |||||
| 45 | =cut | ||||
| 46 | |||||
| 47 | 1 | 37µs | 1 | 2.52ms | __PACKAGE__->add_columns( # spent 2.52ms making 1 call to DBIx::Class::ResultSourceProxy::add_columns |
| 48 | "printername", | ||||
| 49 | { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 }, | ||||
| 50 | "printqueue", | ||||
| 51 | { data_type => "varchar", is_nullable => 1, size => 20 }, | ||||
| 52 | "printtype", | ||||
| 53 | { data_type => "varchar", is_nullable => 1, size => 20 }, | ||||
| 54 | ); | ||||
| 55 | |||||
| 56 | =head1 PRIMARY KEY | ||||
| 57 | |||||
| 58 | =over 4 | ||||
| 59 | |||||
| 60 | =item * L</printername> | ||||
| 61 | |||||
| 62 | =back | ||||
| 63 | |||||
| 64 | =cut | ||||
| 65 | |||||
| 66 | 1 | 25µs | 1 | 146µs | __PACKAGE__->set_primary_key("printername"); # spent 146µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key |
| 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:OaIxwtdwn0TJLggwOygC2w | ||||
| 71 | |||||
| 72 | |||||
| 73 | # You can replace this text with custom content, and it will be preserved on regeneration | ||||
| 74 | 1 | 11µs | 1; |