Name
ALTER FUNCTION -- 修改一个函数的定义
Synopsis
ALTER FUNCTION name ( [ type [, ...] ] ) RENAME TO newname
ALTER FUNCTION name ( [ type [, ...] ] ) OWNER TO newowner
描述
ALTER FUNCTION 修改一个函数的定义。
参数
- name
一个现有的函数的名字(可以有模式修饰)。
- type
该函数参数的数据类型。
- newname
函数的新名字。
- newowner
函数的新所有者。要改变一个函数的所有者,你必须是超级用户。
请注意如果函数标记为 SECURITY DEFINER,那么它随后将以新的所有者执行。
例子
把名字为 sqrt,参数类型为 integer 的函数重命名为
square_root:
ALTER FUNCTION sqrt(integer) RENAME TO square_root;
为用于类型 integer 的函数 sqrt 的所有者修改为 joe:
ALTER FUNCTION sqrt(integer) OWNER TO joe;
兼容性
在 SQL 标准里有一个 ALTER FUNCTION 语句,但是它并没有提供重命名函数或者修改所有者的选项。