From 68c3409d31b9688f68ee23a319f63071aa581105 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 7 Feb 2013 09:55:31 -0500 Subject: [PATCH] Bug 9523 - Trying to import staged marc records where a matched bib has been deleted caused the import to hang Test Plan: 1) Stage a MARC records 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. --- 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