(on database clusters with a locale other than C or POSIX)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@10440
dcc99617-32d9-48b4-a31d-
7c20da2025e4
FOR EACH ROW EXECUTE PROCEDURE tsearch2(index_vector, value);
CREATE INDEX authority_full_rec_index_vector_idx ON authority.full_rec USING GIST (index_vector);
+/* Enable LIKE to use an index for database clusters with locales other than C or POSIX */
+CREATE INDEX authority_full_rec_value_tpo_index ON authority.full_rec (value text_pattern_ops);
CREATE OR REPLACE VIEW authority.tracing_links AS
SELECT main.record AS record,
--- /dev/null
+/* Enable LIKE to use an index for database clusters with locales other than C or POSIX */
+CREATE INDEX authority_full_rec_value_tpo_index ON authority.full_rec (value text_pattern_ops);