Ask Bjoern Hansen wrote: > Apache::DBI is turning the argument hashref into the "cache key" > with the following code, > > my ($key, $val); > while (($key,$val) = each %{$args[3]}) { > $Idx .= "$;$key=$val"; > } > > can anyone think of a good reason not to change that to something > like > > map { $Idx .= "$;$_=$args[3]->{$_}" } sort keys %{$args[3]};
Good find. That's a bug. Fix it. - Perrin