File | /wise/base/static/lib/perl5/site_perl/5.10.0/DBIx/Class/ResultSource/Table.pm | Statements Executed | 16 | Total Time | 0.000239 seconds |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine | |
---|---|---|---|---|---|---|
2 | 1 | 1 | 2.5e-5 | 5.6e-5 | DBIx::Class::ResultSource::Table:: | from |
0 | 0 | 0 | 0 | 0 | DBIx::Class::ResultSource::Table:: | BEGIN |
Line | Stmts. | Exclusive Time | Avg. | Code |
---|---|---|---|---|
1 | package DBIx::Class::ResultSource::Table; | |||
2 | ||||
3 | 3 | 3.2e-5 | 1.1e-5 | use strict; # spent 10µs making 1 call to strict::import |
4 | 3 | 4.2e-5 | 1.4e-5 | use warnings; # spent 23µs making 1 call to warnings::import |
5 | ||||
6 | 3 | 4.4e-5 | 1.5e-5 | use DBIx::Class::ResultSet; # spent 4µs making 1 call to import |
7 | ||||
8 | 3 | 8.5e-5 | 2.8e-5 | use base qw/DBIx::Class/; # spent 71µs making 1 call to base::import |
9 | 1 | 1.3e-5 | 1.3e-5 | __PACKAGE__->load_components(qw/ResultSource/); # spent 6.18ms making 1 call to Class::C3::Componentised::load_components, max recursion depth 2 |
10 | ||||
11 | =head1 NAME | |||
12 | ||||
13 | DBIx::Class::ResultSource::Table - Table object | |||
14 | ||||
15 | =head1 SYNOPSIS | |||
16 | ||||
17 | =head1 DESCRIPTION | |||
18 | ||||
19 | Table object that inherits from L<DBIx::Class::ResultSource> | |||
20 | ||||
21 | =head1 METHODS | |||
22 | ||||
23 | =head2 from | |||
24 | ||||
25 | Returns the FROM entry for the table (i.e. the table name) | |||
26 | ||||
27 | =cut | |||
28 | ||||
29 | 2 | 1.9e-5 | 9.5e-6 | # spent 56µs (25+31) within DBIx::Class::ResultSource::Table::from which was called 2 times, avg 28µs/call:
# 2 times (25µs+31µs) by DBIx::Class::ResultSet::_resolved_attrs at line 1950 of /wise/base/static/lib/perl5/site_perl/5.10.0/DBIx/Class/ResultSet.pm, avg 28µs/call # spent 31µs making 2 calls to Class::Accessor::Grouped::__ANON__[(eval 0)[/wise/base/static/lib/perl5/site_perl/5.10.0/Class/Accessor/Grouped.pm:156]:8], avg 15µs/call |
30 | ||||
31 | 1 | 4.0e-6 | 4.0e-6 | 1; |
32 | ||||
33 | =head1 AUTHORS | |||
34 | ||||
35 | Matt S. Trout <mst@shadowcatsystems.co.uk> | |||
36 | ||||
37 | =head1 LICENSE | |||
38 | ||||
39 | You may distribute this code under the same terms as Perl itself. | |||
40 | ||||
41 | =cut | |||
42 |