mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
aa4c702eac
Create objects in public schema. Make spacing/capitalization consistent. Remove transaction block use for object creation. Remove unneeded function GRANTs.
9 lines
240 B
MySQL
9 lines
240 B
MySQL
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
SET autocommit TO 'on';
|
|
|
|
CREATE OR REPLACE FUNCTION fti() RETURNS trigger AS
|
|
'MODULE_PATHNAME', 'fti'
|
|
LANGUAGE 'C' VOLATILE CALLED ON NULL INPUT;
|