← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:24:01 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/ReportsDB/Result/Suite.pm
StatementsExecuted 20 statements in 286µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsTapper::Schema::ReportsDB::Result::Suite::::BEGIN@2Tapper::Schema::ReportsDB::Result::Suite::BEGIN@2
11110µs69µsTapper::Schema::ReportsDB::Result::Suite::::BEGIN@12Tapper::Schema::ReportsDB::Result::Suite::BEGIN@12
1119µs26µsTapper::Schema::ReportsDB::Result::Suite::::BEGIN@10Tapper::Schema::ReportsDB::Result::Suite::BEGIN@10
1119µs13µsTapper::Schema::ReportsDB::Result::Suite::::BEGIN@9Tapper::Schema::ReportsDB::Result::Suite::BEGIN@9
1119µs129µsTapper::Schema::ReportsDB::Result::Suite::::sqlt_deploy_hookTapper::Schema::ReportsDB::Result::Suite::sqlt_deploy_hook
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Tapper::Schema::ReportsDB::Result::Suite;
2
# spent 12µs within Tapper::Schema::ReportsDB::Result::Suite::BEGIN@2 which was called: # once (12µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
315µs $Tapper::Schema::ReportsDB::Result::Suite::AUTHORITY = 'cpan:AMD';
4129µs112µs}
5{
62900ns $Tapper::Schema::ReportsDB::Result::Suite::VERSION = '0.001';
7}
8
9321µs218µs
# spent 13µs (9+4) within Tapper::Schema::ReportsDB::Result::Suite::BEGIN@9 which was called: # once (9µs+4µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use strict;
# spent 13µs making 1 call to Tapper::Schema::ReportsDB::Result::Suite::BEGIN@9 # spent 4µs making 1 call to strict::import
10321µs243µs
# spent 26µs (9+17) within Tapper::Schema::ReportsDB::Result::Suite::BEGIN@10 which was called: # once (9µs+17µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 26µs making 1 call to Tapper::Schema::ReportsDB::Result::Suite::BEGIN@10 # spent 17µs making 1 call to warnings::import
11
123112µs2128µs
# spent 69µs (10+59) within Tapper::Schema::ReportsDB::Result::Suite::BEGIN@12 which was called: # once (10µs+59µs) by Class::C3::Componentised::ensure_class_loaded at line 12
use parent 'DBIx::Class';
# spent 69µs making 1 call to Tapper::Schema::ReportsDB::Result::Suite::BEGIN@12 # spent 59µs making 1 call to parent::import
13
14110µs1273µs__PACKAGE__->load_components("Core");
# spent 273µs making 1 call to Class::C3::Componentised::load_components
15120µs1445µs__PACKAGE__->table("suite");
# spent 445µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
16123µs1420µs__PACKAGE__->add_columns
# spent 420µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
17 (
18 "id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_auto_increment => 1, },
19 "name", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 255, },
20 "type", { data_type => "VARCHAR", default_value => undef, is_nullable => 0, size => 50, },
21 "description", { data_type => "TEXT", default_value => undef, is_nullable => 0, },
22 );
23
24114µs154µs__PACKAGE__->set_primary_key("id");
25
2618µs1180µs__PACKAGE__->has_many ( reports => 'Tapper::Schema::ReportsDB::Result::Report', { 'foreign.suite_id' => 'self.id' });
# spent 180µs making 1 call to DBIx::Class::Relationship::HasMany::has_many
27
- -
30sub sqlt_deploy_hook
31
# spent 129µs (9+120) within Tapper::Schema::ReportsDB::Result::Suite::sqlt_deploy_hook which was called: # once (9µs+120µs) by DBIx::Class::ResultSource::default_sqlt_deploy_hook at line 951 of DBIx/Class/ResultSource.pm
{
321900ns my ($self, $sqlt_table) = @_;
3318µs1120µs $sqlt_table->add_index(name => 'suite_idx_name', fields => ['name']);
# spent 120µs making 1 call to SQL::Translator::Schema::Table::add_index
34}
35
36114µs1;
37
38__END__