如何替换postgres中的函数?
How to replace function in postgress?
我想更改功能代码。
如果我使用
CREATE FUNCTION take_proxy (VARCHAR(255)) ....
我得到function "take_proxy" already exists with same argument types
我应该首先尝试删除函数,还是对这种情况有一些语法?
和往常一样,the fine manual是要去的地方:
CREATE [ OR REPLACE ] FUNCTION
CREATE OR REPLACE FUNCTION will either create a new function, or replace an existing definition.
我想更改功能代码。 如果我使用
CREATE FUNCTION take_proxy (VARCHAR(255)) ....
我得到function "take_proxy" already exists with same argument types
我应该首先尝试删除函数,还是对这种情况有一些语法?
和往常一样,the fine manual是要去的地方:
CREATE [ OR REPLACE ] FUNCTION
CREATE OR REPLACE FUNCTION will either create a new function, or replace an existing definition.