HomeMogDBMogDB StackUqbar
v5.0

Documentation:v5.0

Supported Versions:

Other Versions:

ALTER FUNCTION

Function Description

Modifies the attributes of a user-defined function.

Precautions

Compared with the original MogDB, Dolphin modifies the ALTER PROCEDURE syntax as follows:

  1. The modifiable LANGUAGE option is added.
  2. The modifiable item { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } is added.
  3. The modifiable item SQL SECURITY { DEFINER | INVOKER } is added.

Syntax

  • Modify the additional parameter of the customized function.

    ALTER FUNCTION function_name ( [ { [ argname ] [ argmode ] argtype} [, ...] ] )
        action [ ... ] [ RESTRICT ];

    The syntax of the action clause is as follows:

    {CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT}
     | {IMMUTABLE | STABLE | VOLATILE}
     | {SHIPPABLE | NOT SHIPPABLE}
     | {NOT FENCED | FENCED}
     | [ NOT ] LEAKPROOF
     | { [ EXTERNAL|SQL ] SECURITY INVOKER | [ EXTERNAL|SQL ] SECURITY DEFINER }
     | AUTHID { DEFINER | CURRENT_USER }
     | COST execution_cost
     | ROWS result_rows
     | SET configuration_parameter { { TO | = } { value | DEFAULT }| FROM CURRENT}
     | RESET {configuration_parameter | ALL}
     | COMMENT 'text'
     | LANGUAGE lang_name
     | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA }

Parameter Description

  • LANGUAGE lang_name

    Name of the language used to implement the function. This parameter is compatible only with the syntax and has no actual effect.

  • SQL SECURITY INVOKER

    Specifies that the function is to be executed with the permissions of the user that calls it. This parameter can be omitted.

    The functions of SQL SECURITY INVOKER and SECURITY INVOKER and AUTHID CURRENT_USER are the same.

  • SQL SECURITY DEFINER

    Specifies that the function is to be executed with the privileges of the user that created it.

    The functions of SQL SECURITY DEFINER and AUTHID DEFINER and SECURITY DEFINER are the same.

  • CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA

    Syntax compatibility item.

Example

    --Specify NO SQL.
    MogDB=# ALTER FUNCTION f1 (s char(20)) NO SQL;

    --Specify CONTAINS SQL.
    MogDB=# ALTER FUNCTION f1 (s char(20)) CONTAINS SQL;

    --Specify LANGUAGE SQL.
    MogDB=# ALTER FUNCTION f1 (s char(20)) LANGUAGE SQL ;

    --Specify MODIFIES SQL DATA.
    MogDB=# ALTER FUNCTION f1 (s char(20)) MODIFIES SQL DATA;

    --Specify READS SQL DATA.
    MogDB=# ALTER FUNCTION f1 (s char(20)) READS SQL DATA;

    --Specify SECURITY INVOKER.
    MogDB=# ALTER FUNCTION f1 (s char(20)) SQL SECURITY INVOKER;

    --Specify SECURITY DEFINER.
    MogDB=# ALTER FUNCTION f1 (s char(20)) SQL SECURITY DEFINER;

ALTER FUNCTION

Copyright © 2011-2024 www.enmotech.com All rights reserved.