Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issues 2802の対応 #2812

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/src/sgml/config.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -11290,7 +11290,7 @@ log_line_prefix = '%m [%p] %q%u@%d/%a '
(with any embedded single-quote marks doubled).
-->
どのSQL文をログに記録するかを制御します。
有効な値は、<literal>none</literal>(off)、<literal>ddl</literal>、<literal>mod</literal>、および<literal>all</literal>(全てのメッセージ)です。
有効な値は、<literal>none</literal>(off)、<literal>ddl</literal>、<literal>mod</literal>、および<literal>all</literal>(全ての文)です。
<literal>ddl</literal>は、<command>CREATE</command>、<command>ALTER</command>、および<command>DROP</command>文といった、データ定義文を全てログに記録します。
<literal>mod</literal>は、全ての<literal>ddl</literal>文に加え、<command>INSERT</command>、<command>UPDATE</command>、<command>DELETE</command>、<command>TRUNCATE</command>、および<command>COPY FROM</command>といった、データ変更文をログに記録します。
<command>PREPARE</command>、<command>EXECUTE</command>および<command>EXPLAIN ANALYZE</command>コマンドも、そこに含まれるコマンドが適切な種類であればログが録られます。
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/config2.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -2213,7 +2213,7 @@ log_line_prefix = '%m [%p] %q%u@%d/%a '
(with any embedded single-quote marks doubled).
-->
どのSQL文をログに記録するかを制御します。
有効な値は、<literal>none</literal>(off)、<literal>ddl</literal>、<literal>mod</literal>、および<literal>all</literal>(全てのメッセージ)です。
有効な値は、<literal>none</literal>(off)、<literal>ddl</literal>、<literal>mod</literal>、および<literal>all</literal>(全ての文)です。
<literal>ddl</literal>は、<command>CREATE</command>、<command>ALTER</command>、および<command>DROP</command>文といった、データ定義文を全てログに記録します。
<literal>mod</literal>は、全ての<literal>ddl</literal>文に加え、<command>INSERT</command>、<command>UPDATE</command>、<command>DELETE</command>、<command>TRUNCATE</command>、および<command>COPY FROM</command>といった、データ変更文をログに記録します。
<command>PREPARE</command>、<command>EXECUTE</command>および<command>EXPLAIN ANALYZE</command>コマンドも、そこに含まれるコマンドが適切な種類であればログが録られます。
Expand Down
Loading