From 1218a265487a2d698f5ad82dc00e68a945776126 Mon Sep 17 00:00:00 2001 From: Kyotaro Horiguchi Date: Tue, 18 Jan 2022 15:43:26 +0900 Subject: [PATCH] [DOC] Fix default value for pg_hint_plan.message_level The actual default value for the variable is LOG so that the messages are emitted to server log. Fix the documentation. Per the report from jianggq@cn.fujitsu.com. --- doc/pg_hint_plan-ja.html | 4 ++-- doc/pg_hint_plan.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/pg_hint_plan-ja.html b/doc/pg_hint_plan-ja.html index c922d2c..bfb978a 100755 --- a/doc/pg_hint_plan-ja.html +++ b/doc/pg_hint_plan-ja.html @@ -366,8 +366,8 @@ EXPLAIN SELECT * FROM a, b WHERE a.val = b.val; 指定したヒントを解釈できなかった場合のログメッセージのレベルを指定します。有効な値は、debug5、debug4、debug3、debug2、debug1、log、info、notice、warning、またはerrorです。INFO pg_hint_plan.debug_print 動作状況を示すログメッセージの出力を制御します。指定可能な値は off, on, verbose, detailed です。off -pg_hint_plan.message_elevel - 動作ログメッセージのログレベルを指定します。有効な値は、debug5、debug4、debug3、debug2、debug1、log、info、notice、warning、またはerrorです。INFO +pg_hint_plan.message_level + 動作ログメッセージのログレベルを指定します。有効な値は、debug5、debug4、debug3、debug2、debug1、log、info、notice、warning、またはerrorです。LOG diff --git a/doc/pg_hint_plan.html b/doc/pg_hint_plan.html index e8d4b5a..1773885 100755 --- a/doc/pg_hint_plan.html +++ b/doc/pg_hint_plan.html @@ -239,7 +239,7 @@ postgres-# SELECT * FROM table1 t1 WHERE key = 'value'; pg_hint_plan.debug_print Controls debug print and verbosity. Valid values are off, on, detailed and verbose.off pg_hint_plan.message_level - Specifies message level of debug print. Valid values are error, warning, notice, info, log, debug.INFO + Specifies message level of debug print. Valid values are error, warning, notice, info, log, debug.LOG

Installation

-- 2.11.0