ALTER AGGREGATE
ALTER AGGREGATE
Name
ALTER AGGREGATE -- change the definition of an aggregate functionSynopsis
ALTER AGGREGATE name ( aggregate_signature ) RENAME TO new_name ALTER AGGREGATE name ( aggregate_signature ) OWNER TO new_owner ALTER AGGREGATE name ( aggregate_signature ) SET SCHEMA new_schema where aggregate_signature is: * | [ argmode ] [ argname ] argtype [ , ... ] | [ [ argmode ] [ argname ] argtype [ , ... ] ] ORDER BY [ argmode ] [ argname ] argtype [ , ... ]
Description
ALTER AGGREGATE
changes the definition of an aggregate function.
You must own the aggregate function to use ALTER AGGREGATE
. To change the schema of an aggregate function, you must also have 登录查看完整内容