From: Bill Erickson Date: Wed, 2 Mar 2016 19:45:19 +0000 (-0500) Subject: JBAS-1263 'Other Author' index no longer creates browse entries X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=4e728c1d18fcf258c5b5e73b89c46d200c43cbba;p=working%2FEvergreen.git JBAS-1263 'Other Author' index no longer creates browse entries Signed-off-by: Bill Erickson --- diff --git a/KCLS/sql/schema/deploy/2.5-to-2.7-upgrade.sql b/KCLS/sql/schema/deploy/2.5-to-2.7-upgrade.sql index bee3a7ef63..2bdd0e360e 100644 --- a/KCLS/sql/schema/deploy/2.5-to-2.7-upgrade.sql +++ b/KCLS/sql/schema/deploy/2.5-to-2.7-upgrade.sql @@ -16,6 +16,12 @@ BEGIN; SET statement_timeout = 0; +-- JBAS-1263 +-- "Other Author" index creates duplicate browse entries as "Additional +-- Personal Author", since the former strips commas and we want the +-- commas. Avoid creating browse entries for "Other Author" +UPDATE config.metabib_field SET browse_field = FALSE WHERE id = 10; + -- Resolves issue with re-ingests failing on call number index entry create. -- Discovered while re-indexing for JBAS-1246 -- Cargo-culting the other configs for now. Will reasess as needed.