https://github.com/postgres/postgres
Raw File
Tip revision: 936b62ddf247c26e8cc4fca34bd8a4c2e65c09fd authored by Tom Lane on 20 June 2016, 20:23:47 UTC
Stamp 9.6beta2.
Tip revision: 936b62d
dict_xsyn--unpackaged--1.0.sql
/* contrib/dict_xsyn/dict_xsyn--unpackaged--1.0.sql */

-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION dict_xsyn FROM unpackaged" to load this file. \quit

ALTER EXTENSION dict_xsyn ADD function dxsyn_init(internal);
ALTER EXTENSION dict_xsyn ADD function dxsyn_lexize(internal,internal,internal,internal);
ALTER EXTENSION dict_xsyn ADD text search template xsyn_template;
ALTER EXTENSION dict_xsyn ADD text search dictionary xsyn;
back to top