← 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:47 2010

File/wise/base/deliv/dev/lib/perl/WISE/DB/FrameIndex/HouseKeeping.pm
Statements Executed11
Total Time0.000216 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
00000WISE::DB::FrameIndex::HouseKeeping::BEGIN

LineStmts.Exclusive
Time
Avg.Code
1package WISE::DB::FrameIndex::HouseKeeping;
2# $Id: HouseKeeping.pm 5619 2009-08-21 20:30:50Z tim $
3
411.0e-61.0e-6$VERSION = 1.00;
511.0e-61.0e-6$ID = '$Id: HouseKeeping.pm 5619 2009-08-21 20:30:50Z tim $';
6
7
830.000103.4e-5use base qw/DBIx::Class/;
# spent 118µs making 1 call to base::import
9
1011.3e-51.3e-5__PACKAGE__->load_components(qw/PK::Auto Core/);
# spent 446µs making 1 call to Class::C3::Componentised::load_components
1112.2e-52.2e-5__PACKAGE__->table('hks');
# spent 676µs making 1 call to DBIx::Class::ResultSourceProxy::Table::table
1212.6e-52.6e-5__PACKAGE__->add_columns( hkid => {data_type => 'integer', is_nullable => 0, is_auto_increment => 1},
# spent 469µs making 1 call to DBIx::Class::ResultSourceProxy::add_columns
13 delivery => {data_type => 'text', is_nullable => 0 }
14 );
15
1612.8e-52.8e-5__PACKAGE__->set_primary_key(qw/hkid/);
# spent 153µs making 1 call to DBIx::Class::ResultSourceProxy::set_primary_key
17
1811.5e-51.5e-5__PACKAGE__->many_to_many( frame => 'WISE::DB::FrameIndex::Frame', 'delivery');
19
2019.0e-69.0e-61;
21