mirror of
https://github.com/postgres/postgres.git
synced 2025-05-11 05:41:32 +03:00
30 lines
728 B
MySQL
30 lines
728 B
MySQL
-- $PostgreSQL: pgsql/contrib/dict_int/dict_int.sql.in,v 1.1 2007/10/15 21:36:50 tgl Exp $
|
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
BEGIN;
|
|
|
|
CREATE FUNCTION dintdict_init(internal)
|
|
RETURNS internal
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C STRICT;
|
|
|
|
CREATE FUNCTION dintdict_lexize(internal, internal, internal, internal)
|
|
RETURNS internal
|
|
AS 'MODULE_PATHNAME'
|
|
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';
|
|
|
|
END;
|