From 968df3fc9aff2fea74bde88e1f783bb3bc6eb093 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Fri, 10 Mar 2000 22:26:55 +0000 Subject: [PATCH] Sigh. We now need to lock the attachments table, too, just in case a midair collision happens which needs to generate text which needs to look at the attachments table. Sigh. git-svn-id: svn://10.0.0.236/trunk@62548 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/process_bug.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/process_bug.cgi b/mozilla/webtools/bugzilla/process_bug.cgi index ac8f1a39570..f385f13d11d 100755 --- a/mozilla/webtools/bugzilla/process_bug.cgi +++ b/mozilla/webtools/bugzilla/process_bug.cgi @@ -591,7 +591,7 @@ foreach my $id (@idlist) { SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " . "profiles $write, dependencies $write, votes $write, " . "keywords $write, longdescs $write, fielddefs $write, " . - "keyworddefs READ, groups READ"); + "keyworddefs READ, groups READ, attachments READ"); my @oldvalues = SnapShotBug($id); my $i = 0; foreach my $col (@::log_columns) {