https://github.com/postgres/postgres
Raw File
Tip revision: 59a0c01e3d88910e92a24e388f346670f4f696ef authored by Tom Lane on 24 October 2016, 20:15:40 UTC
Stamp 9.3.15.
Tip revision: 59a0c01
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