Renames an existing function.
Available in a network database and requires the star$define role.
Parameters:
| Name | Optional | Type | Description |
| old$ | Mandatory | Text | Existing function name. |
| arguments$ | Mandatory | Text | Function argument signature. |
| new$ | Mandatory | Text | New function name. |
Examples:
SELECT rename_function('old','num int','new'); -- renames function 'old' to 'new'
Tips:
- The star$functions view lists existing functions
Comments
Article is closed for comments.