Skip Menu |

This queue is for tickets about the DBD-SQLite CPAN distribution.

Report information
The Basics
Id: 106950
Status: resolved
Priority: 0/
Queue: DBD-SQLite

People
Owner: Nobody in particular
Requestors: ribasushi [...] leporine.io
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.49_01
Fixed in: (no value)



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; '
On Tue Sep 08 15:44:25 2015, RIBASUSHI wrote: Show quoted text
> 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; > '
Patched in 1.49_02. Thanks.
Closed as 1.50 was shipped. Thanks.