You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is now possible to grant execution privileges for Lua functions
through the declarative configuration, even when the database is in
read-only mode or has an outdated schema version.
You can specify function permissions using the lua_call option in
the configuration, for example:
This grants the alice user permission to execute the my_func Lua
function, regardless of the database's mode or status. The special option lua_call: [all] is also supported, granting access to all global Lua
functions except built-in ones, bypassing database restrictions.
Privileges will still be written to the database when possible to
maintain compatibility and consistency with other privilege types.
Requested by @mandesero in tarantool/tarantool@38c6b0d.
The text was updated successfully, but these errors were encountered:
Product: Tarantool
Since: 3.2
Root document:
SME: @ mandesero @ Totktonada
Details
To be done together with #4462.
It is now possible to grant execution privileges for Lua functions
through the declarative configuration, even when the database is in
read-only mode or has an outdated schema version.
You can specify function permissions using the
lua_call
option inthe configuration, for example:
This grants the
alice
user permission to execute themy_func
Luafunction, regardless of the database's mode or status. The special option
lua_call: [all]
is also supported, granting access to all global Luafunctions except built-in ones, bypassing database restrictions.
Privileges will still be written to the database when possible to
maintain compatibility and consistency with other privilege types.
Requested by @mandesero in tarantool/tarantool@38c6b0d.
The text was updated successfully, but these errors were encountered: