mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
7f4f42fa10
particular get rid of single quotes around language names and old WITH () construct.
27 lines
751 B
Plaintext
27 lines
751 B
Plaintext
SET search_path = public;
|
|
BEGIN;
|
|
|
|
HASINIT create function dinit_CFG_MODNAME(internal)
|
|
HASINIT returns internal
|
|
HASINIT as 'MODULE_PATHNAME'
|
|
HASINIT language C;
|
|
|
|
NOSNOWBALL create function dlexize_CFG_MODNAME(internal,internal,int4)
|
|
NOSNOWBALL returns internal
|
|
NOSNOWBALL as 'MODULE_PATHNAME'
|
|
NOSNOWBALL language C
|
|
NOSNOWBALL returns null on null input;
|
|
|
|
insert into pg_ts_dict select
|
|
'CFG_MODNAME',
|
|
HASINIT (select oid from pg_proc where proname='dinit_CFG_MODNAME'),
|
|
NOINIT null,
|
|
null,
|
|
ISSNOWBALL (select oid from pg_proc where proname='snb_lexize'),
|
|
NOSNOWBALL (select oid from pg_proc where proname='dlexize_CFG_MODNAME'),
|
|
CFG_COMMENT
|
|
;
|
|
|
|
|
|
END;
|