Subject: | Extra warnings with savepoints, possibly due to fix of RT#106151 |
Example below does not warn on 1.48 but issues a warning on 1.49_01
Cheers!
~$ perl -e '
use warnings;
use strict;
use DBI;
my $dbh = DBI->connect("dbi:SQLite::memory:", undef, undef, { AutoCommit => 1, RaiseError => 1 });
$dbh->begin_work;
$dbh->do( "SAVEPOINT svp" );
$dbh->do( "RELEASE SAVEPOINT svp" );
$dbh->commit;
'