From: Jason Stephenson Date: Mon, 16 Nov 2015 21:15:22 +0000 (-0500) Subject: LP 1516786: 0938 Upgrade Script ends in END and not COMMIT. X-Git-Tag: sprint4-merge-nov22~842 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=162dfb1daf9310eb7a9fa91d7715f843c8eaf744;p=working%2FEvergreen.git LP 1516786: 0938 Upgrade Script ends in END and not COMMIT. Change the END; on the last line of 0938.data.some_rda_attributes.sql to COMMIT; for reasons of consistency and to avoid issues when wrapped in larger upgrade scripts using the make release script. Signed-off-by: Jason Stephenson Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/sql/Pg/upgrade/0938.data.some_rda_attributes.sql b/Open-ILS/src/sql/Pg/upgrade/0938.data.some_rda_attributes.sql index bbc05437c2..d9faa36993 100644 --- a/Open-ILS/src/sql/Pg/upgrade/0938.data.some_rda_attributes.sql +++ b/Open-ILS/src/sql/Pg/upgrade/0938.data.some_rda_attributes.sql @@ -342,4 +342,4 @@ WHERE tag = '337' AND code = 'a' AND marc_record_type = 'biblio'; UPDATE config.marc_subfield set value_ctype = 'carrier_type' WHERE tag = '338' AND code = 'a' AND marc_record_type = 'biblio'; -END; +COMMIT;