$func$ LANGUAGE PLPGSQL;
-SELECT evergreen.upgrade_deps_block_check('0875', :eg_version);
-
-ALTER TABLE authority.record_entry ADD COLUMN heading TEXT, ADD COLUMN simple_heading TEXT;
-
-DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
-DROP INDEX IF EXISTS authority.by_heading_and_thesaurus;
-DROP INDEX IF EXISTS authority.by_heading;
-
--- Update without indexes for HOT update
-UPDATE authority.record_entry
- SET heading = authority.normalize_heading( marc ),
- simple_heading = authority.simple_normalize_heading( marc );
-
-CREATE INDEX by_heading_and_thesaurus ON authority.record_entry (heading) WHERE deleted IS FALSE or deleted = FALSE;
-CREATE INDEX by_heading ON authority.record_entry (simple_heading) WHERE deleted IS FALSE or deleted = FALSE;
-
--- Add the trigger
-CREATE OR REPLACE FUNCTION authority.normalize_heading_for_upsert () RETURNS TRIGGER AS $f$
-BEGIN
- NEW.heading := authority.normalize_heading( NEW.marc );
- NEW.simple_heading := authority.simple_normalize_heading( NEW.marc );
- RETURN NEW;
-END;
-$f$ LANGUAGE PLPGSQL;
-
-CREATE TRIGGER update_headings_tgr BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE authority.normalize_heading_for_upsert();
-
-ALTER FUNCTION authority.normalize_heading(TEXT, BOOL) STABLE STRICT;
-ALTER FUNCTION authority.normalize_heading(TEXT) STABLE STRICT;
-ALTER FUNCTION authority.simple_normalize_heading(TEXT) STABLE STRICT;
-ALTER FUNCTION authority.simple_heading_set(TEXT) STABLE STRICT;
+--SELECT evergreen.upgrade_deps_block_check('0875', :eg_version);
+--
+--ALTER TABLE authority.record_entry ADD COLUMN heading TEXT, ADD COLUMN simple_heading TEXT;
+--
+--DROP INDEX IF EXISTS authority.unique_by_heading_and_thesaurus;
+--DROP INDEX IF EXISTS authority.by_heading_and_thesaurus;
+--DROP INDEX IF EXISTS authority.by_heading;
+--
+---- Update without indexes for HOT update
+--UPDATE authority.record_entry
+-- SET heading = authority.normalize_heading( marc ),
+-- simple_heading = authority.simple_normalize_heading( marc );
+--
+--CREATE INDEX by_heading_and_thesaurus ON authority.record_entry (heading) WHERE deleted IS FALSE or deleted = FALSE;
+--CREATE INDEX by_heading ON authority.record_entry (simple_heading) WHERE deleted IS FALSE or deleted = FALSE;
+--
+---- Add the trigger
+--CREATE OR REPLACE FUNCTION authority.normalize_heading_for_upsert () RETURNS TRIGGER AS $f$
+--BEGIN
+-- NEW.heading := authority.normalize_heading( NEW.marc );
+-- NEW.simple_heading := authority.simple_normalize_heading( NEW.marc );
+-- RETURN NEW;
+--END;
+--$f$ LANGUAGE PLPGSQL;
+--
+--CREATE TRIGGER update_headings_tgr BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE authority.normalize_heading_for_upsert();
+--
+--ALTER FUNCTION authority.normalize_heading(TEXT, BOOL) STABLE STRICT;
+--ALTER FUNCTION authority.normalize_heading(TEXT) STABLE STRICT;
+--ALTER FUNCTION authority.simple_normalize_heading(TEXT) STABLE STRICT;
+--ALTER FUNCTION authority.simple_heading_set(TEXT) STABLE STRICT;