← 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:23:14 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/site_perl/5.12.3/Tapper/Schema/ReportsDB/Result/ReportTopic.pm
StatementsExecuted 18 statements in 241µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11112µs12µsTapper::Schema::ReportsDB::Result::ReportTopic::::BEGIN@2Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@2
11110µs14µsTapper::Schema::ReportsDB::Result::ReportTopic::::BEGIN@9Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@9
1119µs24µsTapper::Schema::ReportsDB::Result::ReportTopic::::BEGIN@10Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@10
1118µs47µsTapper::Schema::ReportsDB::Result::ReportTopic::::BEGIN@12Tapper::Schema::ReportsDB::Result::ReportTopic::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::ReportsDB::Result::ReportTopic;
2
# spent 12µs within Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@2 which was called: # once (12µs+0s) by Class::C3::Componentised::ensure_class_loaded at line 4
BEGIN {
314µs $Tapper::Schema::ReportsDB::Result::ReportTopic::AUTHORITY = 'cpan:AMD';
4128µs112µs}
5{
62900ns $Tapper::Schema::ReportsDB::Result::ReportTopic::VERSION = '0.001';
7}
8
9319µs219µs
# spent 14µs (10+5) within Tapper::Schema::ReportsDB::Result::ReportTopic::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::ReportsDB::Result::ReportTopic::BEGIN@9 # spent 5µs making 1 call to strict::import
10320µs240µs
# spent 24µs (9+16) within Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@10 which was called: # once (9µs+16µs) by Class::C3::Componentised::ensure_class_loaded at line 10
use warnings;
# spent 24µs making 1 call to Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@10 # spent 16µs making 1 call to warnings::import
11
12381µs286µs
# spent 47µs (8+39) within Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@12 which was called: # once (8µs+39µs) by Class::C3::Componentised::ensure_class_loaded at line 12
use parent 'DBIx::Class';
# spent 47µs making 1 call to Tapper::Schema::ReportsDB::Result::ReportTopic::BEGIN@12 # spent 39µs making 1 call to parent::import
13
14110µs1232µs__PACKAGE__->load_components("Core");
# spent 232µs making 1 call to Class::C3::Componentised::load_components
15117µs1418µs__PACKAGE__->table("reporttopic");
# spent 418µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
16122µs1536µs__PACKAGE__->add_columns
# spent 536µ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 "report_id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_foreign_key => 1, },
20 "name", { data_type => "VARCHAR", default_value => "", is_nullable => 1, size => 50, },
21 "details", { data_type => "TEXT", default_value => "", is_nullable => 0, },
22 );
23
24116µs157µs__PACKAGE__->set_primary_key("id");
25
2619µs1259µs__PACKAGE__->belongs_to ( report => 'Tapper::Schema::ReportsDB::Result::Report', { 'foreign.id' => 'self.report_id' });
# spent 259µs making 1 call to DBIx::Class::Relationship::BelongsTo::belongs_to
27
28
29114µs1;
30
31
32__END__