← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/getfix
  Run on Thu May 20 15:30:03 2010
Reported on Thu May 20 16:25:34 2010

File/wise/base/static/lib/perl5/site_perl/5.10.0/DBIx/Class/ResultSource/Table.pm
Statements Executed16
Total Time0.000239 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
2112.5e-55.6e-5DBIx::Class::ResultSource::Table::from
00000DBIx::Class::ResultSource::Table::BEGIN

LineStmts.Exclusive
Time
Avg.Code
1package DBIx::Class::ResultSource::Table;
2
333.2e-51.1e-5use strict;
# spent 10µs making 1 call to strict::import
434.2e-51.4e-5use warnings;
# spent 23µs making 1 call to warnings::import
5
634.4e-51.5e-5use DBIx::Class::ResultSet;
# spent 4µs making 1 call to import
7
838.5e-52.8e-5use base qw/DBIx::Class/;
# spent 71µs making 1 call to base::import
911.3e-51.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
13DBIx::Class::ResultSource::Table - Table object
14
15=head1 SYNOPSIS
16
17=head1 DESCRIPTION
18
19Table object that inherits from L<DBIx::Class::ResultSource>
20
21=head1 METHODS
22
23=head2 from
24
25Returns the FROM entry for the table (i.e. the table name)
26
27=cut
28
2921.9e-59.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
sub from { shift->name; }
30
3114.0e-64.0e-61;
32
33=head1 AUTHORS
34
35Matt S. Trout <mst@shadowcatsystems.co.uk>
36
37=head1 LICENSE
38
39You may distribute this code under the same terms as Perl itself.
40
41=cut
42