From a8c0e3e37307a18a1b9a0e3ddad1140dfd3fea7a Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 5 Jan 2017 16:36:21 +0000 Subject: [PATCH] LP#1663663: unbreak Full Overlay merge profile This patch fixes a regression introduced in 2.11 that had the effect of making the stock Full Overlay merge profile act like a match-only merge that also updates the bib source. To test ------- [1] After applying the patches, verify that the Full Overlay merge profile now fullly updates the target bib record. Signed-off-by: Galen Charlton --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index a0171f1898..38342a5217 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -14582,7 +14582,7 @@ INSERT INTO action_trigger.environment ( INSERT INTO vandelay.merge_profile (id, owner, name, replace_spec, update_bib_source) VALUES (1, 1, oils_i18n_gettext(1, 'Match-Only Merge', 'vmp', 'name'), '901c', false); -INSERT INTO vandelay.merge_profile (id, owner, name, replace_spec, update_bib_source) +INSERT INTO vandelay.merge_profile (id, owner, name, preserve_spec, update_bib_source) VALUES (2, 1, oils_i18n_gettext(2, 'Full Overlay', 'vmp', 'name'), '901c', true); SELECT SETVAL('vandelay.merge_profile_id_seq'::TEXT, 100); -- 2.43.2