So I am trying to pass a hash reference in Perl 5.8.8, which I know should be a pretty trivial thing. I pass hashes all over the place in my code, but for some reason it does not work in this subroutine:
sub build_results_hash {
my %results;
my $search = $_[0];
my $json = $_[1];
my $json_passed = $_[2];
my $dbh = db_connect(-db=>'ghgs');
my $db_search = html_db_input($search,$dbh);
%results = db_hoh(-query=>"SELECT listing_id,MATCH(search) AGAINST($db_search) as relevance FROM search WHERE MATCH(search) AGAINST($db_search) LIMIT 1000",-key=>"listing_id",-dbh=>$dbh);
if(($json_passed == 1) and ($json ne '[]'))
{
narrow_results_hash(\%results,$search,$dbh,$json);
}
db_x($dbh);
return \%results;
}
sub db_hoh {
# ...
return %hoh;
}
db_hoh just returns a hash of hashes. So the issue is when I call narrow_results_hash and pass %results, it does not work. However, if I remove the if statement that surrounds that method call, then the hash passed fine! I am not sure what would cause that behavior. Here is how I receive the hash:
sub narrow_results_hash
{
use JSON::XS;
my $params = shift;
my %results = %$params;
# ...
print join(',',keys %results), "\n";
# ...
}
If I remove the if statement around the narrow_results_hash call in build_results_hash, it prints: "107,99,34". However, if the if statement is present around the call, it prints "HASH(0x7fd61fbf0580)".
%resultsand make sure it's a hash of hashes as you believe. I tried looking up the db_hoh method, but couldn't find it in the DBI documentation. I suspect thatdb_hohis probably returning a reference to a hash of hashes. – David W. Dec 26 '11 at 15:06