Current Path : /usr/local/share/postgresql/contrib/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/local/share/postgresql/contrib/dict_int.sql |
/* $PostgreSQL: pgsql/contrib/dict_int/dict_int.sql.in,v 1.3 2007/11/13 04:24:27 momjian Exp $ */ -- Adjust this setting to control where the objects get created. SET search_path = public; CREATE OR REPLACE FUNCTION dintdict_init(internal) RETURNS internal AS '$libdir/dict_int' LANGUAGE C STRICT; CREATE OR REPLACE FUNCTION dintdict_lexize(internal, internal, internal, internal) RETURNS internal AS '$libdir/dict_int' LANGUAGE C STRICT; CREATE TEXT SEARCH TEMPLATE intdict_template ( LEXIZE = dintdict_lexize, INIT = dintdict_init ); CREATE TEXT SEARCH DICTIONARY intdict ( TEMPLATE = intdict_template ); COMMENT ON TEXT SEARCH DICTIONARY intdict IS 'dictionary for integers';