Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The ALTER FUNCTION command modifies the definition of a function. To use this command, you must own the function.
ALTER FUNCTION
ALTER FUNCTION function( argument_type [, ...] ) alter_option;
alter_option
SET SCHEMA
ALTER FUNCTION function( argument_type [, ...] ) SET SCHEMA schema_name;
-- Change the schema of the function named "test_func" to a schema named "test_schema" ALTER FUNCTION test_func(INT) SET SCHEMA test_schema;
Was this page helpful?