From: Chris Sharp Date: Sat, 16 Feb 2013 22:16:17 +0000 (-0500) Subject: decided that running that function isn't necessary, but it's there for future use X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bef178f2c77d8c8b9f713179561df948a218df48;p=evergreen%2Fpines.git decided that running that function isn't necessary, but it's there for future use --- diff --git a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql index 3fff20755a..79d6d925a7 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql @@ -3,10 +3,6 @@ -- remove replication schema DROP SCHEMA _replication CASCADE; - --- this should already be true, but explicitly setting the search path to include the evergreen schema: -SELECT evergreen.change_db_setting('search_path', ARRAY['evergreen','public','pg_catalog']); - -- For preventing invalid marcxml - possible supplement or replacement for biblio.check_marcxml_well_formed? -- Should be useful for flagging bad MARCXML that has slipped in over time @@ -53,8 +49,3 @@ ALTER TABLE biblio.record_entry ENABLE TRIGGER ALL; -- disable triggers on asset.copy ALTER TABLE asset.copy DISABLE TRIGGER ALL; - --- go ahead and find problem records if any exist because we don't want them to interfere with progress -\o /tmp/problem-bib-records.out -SELECT id FROM biblio.record_entry WHERE is_valid_marcxml(id) IS FALSE; -\o