ddl.sgml の 18.4 対応です#3688
Open
higuchi-daisuke wants to merge 2 commits into
Open
Conversation
KenichiroTanaka
requested changes
Jun 26, 2026
KenichiroTanaka
left a comment
Contributor
There was a problem hiding this comment.
対応ありがとうございます。
以前からの箇所を含めて2点気づいたところがありますので見ていただいてもいいでしょうか。
| 問い合わせ計画の初期化時。 | ||
| パーティション除去は、パラメータの値が分かる実行の初期化段階時に可能です。 | ||
| この段階で除去されたパーティションは、問い合わせの<command>EXPLAIN</command>や<command>EXPLAIN ANALYZE</command>中に姿を見せることはないでしょう。 | ||
| <command>EXPLAIN</command>出力中に<quote>Subplans removed</quote>プロパティを観察することによってこの段階で除去されるパーティションの数を特定することが可能です。 |
Contributor
There was a problem hiding this comment.
とても細かいのですが、
Subplans removed
は原文はSubplans Removed (※Rが大文字)になってますので大文字のままでお願いします。実際に↓のように出力も大文字ですので。
postgres=# SET plan_cache_mode = force_generic_plan;
EXPLAIN EXECUTE q1('2006-02-01');
SET
QUERY PLAN
------------------------------------------------------------------------------------------
Append (cost=0.00..254.52 rows=54 width=16)
Subplans Removed: 5
-> Seq Scan on measurement_y2006m02 measurement_1 (cost=0.00..42.38 rows=9 width=16)
Filter: ((logdate >= $1) AND (logdate < ($1 + '1 mon'::interval)))
(4 rows)
| ノートにとって、このステージで実行されたパーティションプルーニングによって削除されたパーティションが実行の開始時にロックされたままであることは重要です。 | ||
| 問い合わせ計画の初期化時。 | ||
| パーティション除去は、パラメータの値が分かる実行の初期化段階時に可能です。 | ||
| この段階で除去されたパーティションは、問い合わせの<command>EXPLAIN</command>や<command>EXPLAIN ANALYZE</command>中に姿を見せることはないでしょう。 |
Contributor
There was a problem hiding this comment.
前からの表現ですが、
「姿を見せることはないでしょう。」
という表現はマニュアルっぽくないのでこの機会に修正いただいてもいいでしょうか。
show up
なのですが、
「表示されません」
くらいの表現でどうでしょうか。
Contributor
Author
|
レビューいただきありがとうございます。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.