配置设置函数
配置设置函数是可以用于查询以及修改运行时配置参数的函数。
current_setting(setting_name)
描述:当前的设置值。
返回值类型:text
备注:current_setting用于以查询形式获取setting_name的当前值。和SQL语句SHOW是等效的。比如:
openGauss=# SELECT current_setting('datestyle'); current_setting ----------------- ISO, MDY (1 row)
set_working_grand_version_num_manually(tmp_version)
描述:通过切换授权版本号来更新和升级数据库的新特性。
返回值类型:void
shell_in(type)
描述: 为shell类型输入路由(那些尚未填充的类型)。
返回值类型:void
shell_out(type)
描述:为shell 类型输出路由(那些尚未填充的类型)。
返回值类型:void
set_config(setting_name, new_value, is_local)
描述:设置参数并返回新值。
返回值类型:text
备注:set_config将参数setting_name设置为new_value。如果is_local为true,则new_value将只应用于当前事务。如果希望new_value应用于当前会话,可以使用false,和SQL语句SET是等效的。例如:
openGauss=# SELECT set_config('log_statement_stats', 'off', false); set_config ------------ off (1 row)
意见反馈