mirror of
https://github.com/postgres/postgres.git
synced 2026-06-04 06:45:49 -04:00
1336ecb332
we go through and give all the contribs grants? Christopher Kings-Lynne
6 lines
167 B
Plaintext
6 lines
167 B
Plaintext
CREATE OR REPLACE FUNCTION fti() RETURNS trigger AS
|
|
'MODULE_PATHNAME', 'fti'
|
|
LANGUAGE 'C' VOLATILE CALLED ON NULL INPUT;
|
|
|
|
GRANT EXECUTE ON FUNCTION fti() TO PUBLIC;
|