• Bruce Momjian's avatar
    Make /contrib install/uninstall script consistent: · 926bbab4
    Bruce Momjian authored
    	remove transactions
    	use create or replace function
    	make formatting consistent
    	set search patch on first line
    
    Add documentation on modifying *.sql to set the search patch, and
    mention that major upgrades should still run the installation scripts.
    
    Some of these issues were spotted by Tom today.
    926bbab4
dict_int.sql.in 644 Bytes
-- Adjust this setting to control where the objects get created.
SET search_path = public;

CREATE OR REPLACE FUNCTION dintdict_init(internal)
        RETURNS internal
        AS 'MODULE_PATHNAME'
        LANGUAGE C STRICT;

CREATE OR REPLACE 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';