← 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:22:37 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/TestrunDB/Result/PrePrecondition.pm
StatementsExecuted 19 statements in 264µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsTapper::Schema::TestrunDB::Result::PrePrecondition::::BEGIN@2Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@2
11110µs14µsTapper::Schema::TestrunDB::Result::PrePrecondition::::BEGIN@9Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@9
1119µs24µsTapper::Schema::TestrunDB::Result::PrePrecondition::::BEGIN@10Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@10
1119µs45µsTapper::Schema::TestrunDB::Result::PrePrecondition::::BEGIN@12Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@12
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::TestrunDB::Result::PrePrecondition;
2
# spent 12µs within Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@2 which was called: # once (12µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
314µs $Tapper::Schema::TestrunDB::Result::PrePrecondition::AUTHORITY = 'cpan:AMD';
4128µs112µs}
5{
621µs $Tapper::Schema::TestrunDB::Result::PrePrecondition::VERSION = '0.001';
7}
8
9319µs219µs
# spent 14µs (10+5) within Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@9 which was called: # once (10µs+5µs) by Class::C3::Componentised::ensure_class_loaded at line 9
use strict;
# spent 14µs making 1 call to Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@9 # spent 5µs making 1 call to strict::import
10321µs239µs
# spent 24µs (9+15) within Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@10 which was called: # once (9µs+15µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 24µs making 1 call to Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@10 # spent 15µs making 1 call to warnings::import
11
12385µs282µs
# spent 45µs (9+37) within Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@12 which was called: # once (9µs+37µs) by Class::C3::Componentised::ensure_class_loaded at line 12
use parent 'DBIx::Class';
# spent 45µs making 1 call to Tapper::Schema::TestrunDB::Result::PrePrecondition::BEGIN@12 # spent 37µs making 1 call to parent::import
13
1419µs1211µs__PACKAGE__->load_components("Core");
# spent 211µs making 1 call to Class::C3::Componentised::load_components
15138µs1410µs__PACKAGE__->table("pre_precondition");
# spent 410µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
16120µs1492µs__PACKAGE__->add_columns
# spent 492µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
17 (
18 "parent_precondition_id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_foreign_key => 1, },
19 "child_precondition_id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_foreign_key => 1, },
20 "succession", { data_type => "INT", default_value => undef, is_nullable => 0, size => 10, },
21 );
22
23114µs163µs__PACKAGE__->set_primary_key(qw/parent_precondition_id child_precondition_id/);
24
2518µs1238µs__PACKAGE__->belongs_to( parent => 'Tapper::Schema::TestrunDB::Result::Precondition', { 'foreign.id' => 'self.parent_precondition_id' });
# spent 238µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
2612µs1131µs__PACKAGE__->belongs_to( child => 'Tapper::Schema::TestrunDB::Result::Precondition', { 'foreign.id' => 'self.child_precondition_id' });
# spent 131µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
27
28114µs1;
29
30
31__END__