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/test_parser.sql |
/* $PostgreSQL: pgsql/contrib/test_parser/test_parser.sql.in,v 1.3 2007/11/13 04:24:29 momjian Exp $ */ -- Adjust this setting to control where the objects get created. SET search_path = public; CREATE OR REPLACE FUNCTION testprs_start(internal, int4) RETURNS internal AS '$libdir/test_parser' LANGUAGE C STRICT; CREATE OR REPLACE FUNCTION testprs_getlexeme(internal, internal, internal) RETURNS internal AS '$libdir/test_parser' LANGUAGE C STRICT; CREATE OR REPLACE FUNCTION testprs_end(internal) RETURNS void AS '$libdir/test_parser' LANGUAGE C STRICT; CREATE OR REPLACE FUNCTION testprs_lextype(internal) RETURNS internal AS '$libdir/test_parser' LANGUAGE C STRICT; CREATE TEXT SEARCH PARSER testparser ( START = testprs_start, GETTOKEN = testprs_getlexeme, END = testprs_end, HEADLINE = pg_catalog.prsd_headline, LEXTYPES = testprs_lextype );