KMAIN-269: Order records transfer to new bib record merge updated
authorBill Erickson <berickxx@gmail.com>
Wed, 29 Oct 2014 21:10:43 +0000 (17:10 -0400)
committerBill Erickson <berickxx@gmail.com>
Thu, 21 Mar 2019 19:46:23 +0000 (15:46 -0400)
    Cross-port: e8815e7

KCLS/sql/kmain-268/kmain-268.sql

index a58459a..44c0b63 100644 (file)
@@ -154,7 +154,7 @@ BEGIN
     FOR acq_lineitem IN SELECT * FROM acq.lineitem WHERE eg_bib_id = source_record LOOP
         -- ... and move them to the target record, updating marc as well
         UPDATE  acq.lineitem
-          SET   eg_bib_id = target_record, marc = target_mrc
+          SET   eg_bib_id = target_record
           WHERE id = acq_lineitem.id;
 
         moved_objects := moved_objects + 1;