sys_get_config
Syntax
sys.sys_get_config(name,default)
Contents
Description
sys_get_config
is a stored function available with the Sys Schema.
The function returns a configuration option value from the sys_config table. It takes two arguments; name, a configuration option name, and default, which is returned if the given option does not exist in the table.
Both arguments are VARCHAR(128) and can be NULL. Returns NULL if name is NULL, or if the given option is not found and default is NULL.
Examples
SELECT sys.sys_get_config('ps_thread_trx_info.max_length',NULL); +----------------------------------------------------------+ | sys.sys_get_config('ps_thread_trx_info.max_length',NULL) | +----------------------------------------------------------+ | 65535 | +----------------------------------------------------------+
See Also
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.