Since we discovered the apostrophe parsing problem affects records with
text containing apostrophes at any position, don't limit ourselves to
non-filing indicator titles. In theory you might want to reindex any
record that contains an apostrophe, but in practice we found the most
confusion occurs with searching for titles - so target those in the
upgrade script.
Signed-off-by: Dan Scott <dscott@laurentian.ca>
SELECT metabib.reingest_metabib_field_entries(record)
FROM metabib.full_rec
WHERE tag = '245'
- AND ind2 > '0'
AND subfield = 'a'
AND value LIKE '%''%'
;