summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Pg.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-10 16:59:48 +0100
committermkanat%kerio.com <>2005-03-10 16:59:48 +0100
commitc4804fb41628501553714fd98d0078d05353e930 (patch)
treea9d75b289b9a3dbdf0f9c1d616f9a1a51687eed4 /Bugzilla/DB/Pg.pm
parenta46f353a0a226e45a80be2dd07adc78128f4df03 (diff)
downloadbugzilla-c4804fb41628501553714fd98d0078d05353e930.tar.gz
bugzilla-c4804fb41628501553714fd98d0078d05353e930.tar.xz
Bug 285397: Untested parts of Bugzilla::DB are broken (when running on PostgreSQL)
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=Tomas.Kopal, a=justdave
Diffstat (limited to 'Bugzilla/DB/Pg.pm')
-rw-r--r--Bugzilla/DB/Pg.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/Bugzilla/DB/Pg.pm b/Bugzilla/DB/Pg.pm
index 2ec3000d5..de3260e7a 100644
--- a/Bugzilla/DB/Pg.pm
+++ b/Bugzilla/DB/Pg.pm
@@ -42,7 +42,6 @@ package Bugzilla::DB::Pg;
use strict;
use Bugzilla::Error;
-use Carp;
# This module extends the DB interface via inheritance
use base qw(Bugzilla::DB);
@@ -146,7 +145,6 @@ sub bz_lock_tables {
# Check first if there was no lock before
if ($self->{private_bz_tables_locked}) {
- carp("Tables already locked");
ThrowCodeError("already_locked");
} else {
my %read_tables;
@@ -173,6 +171,7 @@ sub bz_lock_tables {
' IN ROW SHARE MODE') if keys %read_tables;
Bugzilla->dbh->do('LOCK TABLE ' . join(', ', keys %write_tables) .
' IN ROW EXCLUSIVE MODE') if keys %write_tables;
+ $self->{private_bz_tables_locked} = 1;
}
}
@@ -183,10 +182,9 @@ sub bz_unlock_tables {
if (!$self->{private_bz_tables_locked}) {
# Abort is allowed even without previous lock for error handling
return if $abort;
-
- carp("No matching lock");
ThrowCodeError("no_matching_lock");
} else {
+ $self->{private_bz_tables_locked} = 0;
# End transaction, tables will be unlocked automatically
if ($abort) {
$self->bz_rollback_transaction();