mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
1336ecb332
we go through and give all the contribs grants? Christopher Kings-Lynne
6 lines
167 B
MySQL
6 lines
167 B
MySQL
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;
|