decided that running that function isn't necessary, but it's there for future use
authorChris Sharp <csharp@georgialibraries.org>
Sat, 16 Feb 2013 22:16:17 +0000 (17:16 -0500)
committerChris Sharp <csharp@georgialibraries.org>
Sat, 16 Feb 2013 22:16:17 +0000 (17:16 -0500)
Open-ILS/src/sql/Pg/version-upgrade/pines-pre-2.1-2.2-upgrade.sql

index 3fff207..79d6d92 100644 (file)
@@ -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