From cdd9d5a9393b0eef9fff6b3260f9fd12f1f3bd77 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 7 Feb 2013 09:57:47 -0500 Subject: [PATCH] Bug 9523: importing staged bib records hangs if a matched bib has been deleted Test Plan: 1) Stage a MARC record file that will have matches with existing records 2) Delete the bib from Koha that was matched on 3) Attempt to import the records into Koha, the import will hang 4) Apply the patch 5) Reload manage-marc-import.pl and attempt to import again, this time it should succeed. Signed-off-by: Galen Charlton --- C4/ImportBatch.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/C4/ImportBatch.pm b/C4/ImportBatch.pm index 5f46613..aa875e7 100644 --- a/C4/ImportBatch.pm +++ b/C4/ImportBatch.pm @@ -1035,6 +1035,7 @@ sub GetBestRecordMatch { my $dbh = C4::Context->dbh; my $sth = $dbh->prepare("SELECT candidate_match_id FROM import_record_matches + JOIN biblio ON ( candidate_match_id = biblionumber ) WHERE import_record_id = ? ORDER BY score DESC, candidate_match_id DESC"); $sth->execute($import_record_id); -- 1.7.2.5