Properly addressed in mainline as
dc715747
* Fixes
- Work around unreliable $sth->finish() on INSERT ... RETURNING within
DBD::Firebird on some compiler/driver combinations (RT#110979)
+ - Fix leaktest failures with upcoming version of Sub::Quote
0.082821 2016-02-11 17:58 (UTC)
* Fixes
my $refs = {};
visit_refs (
# only look at the closed over stuffs
- refs => [ grep { length ref $_ } map { values %{$_->[2]} } grep { ref $_ eq 'ARRAY' } values %Sub::Quote::QUOTED ],
+ refs => [ grep { length ref $_ } (
+
+ # old style Sub::Quote
+ ( map { values %{ $_->[2]} } grep { ref $_ eq 'ARRAY' } values %Sub::Quote::QUOTED ),
+
+ # new style Sub::Quote
+ ( map { values %{ $_->{captures}} } grep { ref $_ eq 'HASH' } values %Sub::Quote::QUOTED ),
+
+ )],
seen_refs => $refs,
action => sub { 1 },
);