I have a piece of code that is used 60K times before it fails on data that is similar to all the other calls. I get a "Not a HASH reference" message. The code looks like:
sub getRowKey
{
my ($self,$row) = @_;
my @keys = split(/,/,$self->{_key});
my $rowkey = "";
confess "Not a non-reference" if ( ! defined( ref( $row ) ) );
confess "no keys found". Dumper($row ) if( scalar(@keys) == 0);
foreach my $k (@keys)
{
try
{
$rowkey .= "," if $rowkey ne "";
$rowkey .= $row->{$k};
}
catch Error with
{
$ex = shift;
print "rowkey = '$rowkey' k = '$k'\n";
print Dumper($ex);
print Dumper($row);
confess "Exception: " . $ex->{-text};
}
;
}
return $rowkey;
}
When the code sees the exception: I get the following output:
rowkey = '' k = 'TopicId'
$VAR1 = bless( {
'-file' => 'baseDB.pm',
'-text' => 'Not a HASH reference',
'-line' => '95',
'-package' => 'Error'
}, 'Error::Simple' );
$VAR1 = \{ ## note this is a a reference!
'LastReplyId' => 8563,
'LastPostDate' => '2006-06-21 13:37:48',
'TopicId' => '8563', ## note this is they name/value pair to be accessed
'LastTopicDate' => '2000',
'LastReplyDate' => '2006-06-21 13:37:48',
'ForumId' => '84',
'LastPostData' => '...'
}
Thank you for your help and suggestions.