https://github.com/postgres/postgres
Raw File
Tip revision: a5915db2fab1fbe555b6410440df5177a247a2f2 authored by Tom Lane on 07 August 2017, 21:17:46 UTC
Stamp 9.3.18.
Tip revision: a5915db
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