Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
130596: sql: update help doc for CREATE FUNCTION, ALTER FUNCTION r=rafiss a=annrpom

This updates the help documentation to reflect the recent SECURITY DEFINER changes.

Epic: CRDB-37477

Release note: None

Co-authored-by: Annie Pompa <[email protected]>
  • Loading branch information
craig[bot] and annrpom committed Sep 17, 2024
2 parents 832ba88 + a9544be commit 0c2c3ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/sql/parser/sql.y
Original file line number Diff line number Diff line change
Expand Up @@ -2080,6 +2080,7 @@ alter_database_stmt:
// CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT
// IMMUTABLE | STABLE | VOLATILE
// [ NOT ] LEAKPROOF
// [ EXTERNAL ] SECURITY { INVOKER | DEFINER }
// %SeeAlso: WEBDOCS/alter-function.html
alter_func_stmt:
alter_func_options_stmt
Expand Down Expand Up @@ -4872,7 +4873,7 @@ create_extension_stmt:
// | [ NOT ] LEAKPROOF
// | { CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT }
// | AS 'definition'
// | { [ EXTERNAL ] SECURITY DEFINER }
// | { [ EXTERNAL ] SECURITY { INVOKER | DEFINER } }
// } ...
// %SeeAlso: WEBDOCS/create-function.html
create_func_stmt:
Expand Down

0 comments on commit 0c2c3ce

Please sign in to comment.