From 5dd4a0b347ad8726d274e25abb66fd5e9f29a00b 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 Signed-off-by: Kathy Lussier --- 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 56408b2fcf..eb4e2df3f2 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -14571,7 +14571,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