Subject: | DBI->installed_versions returns a hash *ref*, not a hash |
The doc has these lines:
@ary = DBI->installed_versions;
%hash = DBI->installed_versions;
which can't really both work. Instead the second line should probably be:
$hash = DBI->installed_versions;