BEGIN;
+SET statement_timeout = 0;
+
-- Resolves issue with re-ingests failing on call number index entry create.
--- discovered while re-indexing for JBAS-1246
+-- Discovered while re-indexing for JBAS-1246
+-- Cargo-culting the other configs for now. Will reasess as needed.
CREATE TEXT SEARCH CONFIGURATION call_number (COPY = english_nostop);
-SET statement_timeout = 0;
+INSERT INTO config.metabib_class (name, label)
+ VALUES ('call_number', 'Call Number');
+
+INSERT INTO config.metabib_class_ts_map
+ (field_class, ts_config, index_weight, always)
+VALUES
+ ('call_number','simple','A',true),
+ ('call_number','english_nostop','C',true);
/* JBAS-1093
Allow duplicate sort_values on browse entries.