security definer
This commit is contained in:
parent
fa4317ba96
commit
d6a6775598
2 changed files with 41 additions and 1 deletions
|
@ -123,3 +123,37 @@ CREATE FUNCTION FOO () RETURNS TABLE(a text, b bigint) AS 'select' LANGUAGE sql;
|
|||
(identifier))))
|
||||
(string)
|
||||
(identifier)))
|
||||
|
||||
================================================================================
|
||||
security definer
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql SECURITY definer;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)
|
||||
(function_run_as)))
|
||||
|
||||
================================================================================
|
||||
security invoker
|
||||
================================================================================
|
||||
CREATE FUNCTION FOO () RETURNS void AS 'select' LANGUAGE sql SECURITY INVOKER;
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
(source_file
|
||||
(create_function_statement
|
||||
(function_signature
|
||||
(identifier)
|
||||
(function_parameters))
|
||||
(function_return
|
||||
(identifier))
|
||||
(string)
|
||||
(identifier)
|
||||
(function_run_as)))
|
||||
|
|
|
@ -582,7 +582,13 @@ module.exports = grammar({
|
|||
$.string,
|
||||
),
|
||||
kw("language"), choice($.identifier, $.string),
|
||||
optional($.function_volatility)
|
||||
optional($.function_volatility),
|
||||
optional($.function_run_as),
|
||||
),
|
||||
|
||||
function_run_as: $ => seq(
|
||||
kw("security"),
|
||||
choice(kw("invoker"), kw("definer"))
|
||||
),
|
||||
|
||||
function_return: $ => seq(
|
||||
|
|
Loading…
Reference in a new issue