Alter Procedure
You are looking at an older version of the documentation. The latest version is found here.
Usage
ALTER PROCEDURE views.<procedurename> AS block
Syntax Rules
- The
ALTERblock should not includeCREATE VIRTUAL PROCEDURE; - Do not use
VIRTUALas inCREATE VIRTUAL PROCEDURE; - The
ALTERblock may be prefixed with a cache hint for cached procedures; - Parameters and return values will be used as given in the
ALTER PROCEDUREcommand, so they may not be omitted if they should be kept.
Example
ALTER PROCEDURE views.dateaxis() returns (xdate date) as
BEGIN
SELECT current_date;
END;;