-
Notifications
You must be signed in to change notification settings - Fork 84
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
Update planstats.sgml for v17 #3189
Merged
+10
−18
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,12 +54,8 @@ | |
while producing statistics, the results will change slightly after | ||
any new <command>ANALYZE</command>. | ||
--> | ||
《マッチ度[55.755396]》以下の例は<productname>PostgreSQL</productname>リグレッションテストデータベース内のテーブルを使用します。 | ||
表示される出力はバージョン8.3で取得しました。 | ||
以前の(または以降の)バージョンとは動作が変わっているかもしれません。 | ||
また、<command>ANALYZE</command>は統計情報を生成する時にランダムなサンプリングを行いますので、結果は<command>ANALYZE</command>を新しく行った後に多少変わることに注意してください。 | ||
《機械翻訳》以下の例は<productname>PostgreSQL</productname>リグレッションテストデータベースのテーブルを使用しています。 | ||
また、<command>ANALYZE</command>は統計を生成する際にランダムサンプリングを使用するため、新しい<command>ANALYZE</command>を実行した後は結果がわずかに変化することに注意してください。 | ||
以下の例では<productname>PostgreSQL</productname>のリグレッションテストデータベース内のテーブルを使用しています。 | ||
また、<command>ANALYZE</command>は統計情報を生成する時にランダムなサンプリングを行うため、<command>ANALYZE</command>を実行するたびに結果が若干変化することに注意してください。 | ||
</para> | ||
|
||
<para> | ||
|
@@ -560,10 +556,8 @@ tablename | null_frac | n_distinct | most_common_vals | |
count estimates for both relations (num_rows, not shown, but "tenk") | ||
together with the column null fractions (zero for both): | ||
--> | ||
《マッチ度[62.269939]》今回の場合、すべての値が一意であるため、<structfield>unique2</structfield>に関する<acronym>MCV</acronym>情報がありません。 | ||
ですので、両リレーションの個別値数とNULL値の部分のみに依存したアルゴリズムを使用することができます。 | ||
《機械翻訳》この場合、<structname>unique2</structname>に対する<acronym>MCV</acronym>情報は存在せず、すべての値は一意であるように見えます(n_distinct = -1)。 | ||
そこで、両方の関係(num_rows、図示せず、ただし"tenk")に対する行数の推定値と列のNULL部分(両方ともゼロ)を使用するアルゴリズムを使用します。 | ||
この場合、<structname>unique2</structname> に関する <acronym>MCV</acronym> の情報はなく、すべての値が一意であるように見えます(n_distinct = -1)。 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
タグの前後のスペースは無しにしてください。 |
||
そのため、両方のリレーション(この場合は "tenk")の行数推定値(num_rows、ここでは表示されていません)と、カラムのNULL率(両方ともゼロ)に基づいたアルゴリズムが使用されます。 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
カラムは「列」で統一されています。 |
||
|
||
<programlisting> | ||
selectivity = (1 - null_frac1) * (1 - null_frac2) / max(num_rows1, num_rows2) | ||
|
@@ -580,10 +574,8 @@ selectivity = (1 - null_frac1) * (1 - null_frac2) / max(num_rows1, num_rows2) | |
Cartesian product of the two inputs, multiplied by the | ||
selectivity: | ||
--> | ||
《マッチ度[76.946108]》これは、各リレーションにおいて、1からNULL部分を差し引き、個別値数の最大値で割った値です。 | ||
この結合が生成するはずの行数は、2つの入力のデカルト積の濃度に、この選択度を掛けたものとして計算されます。 | ||
《機械翻訳》これは、各リレーションに対してNULL分数を1から減算し、より大きなリレーションの行カウントで割った値です(この値は、一意でない場合にスケーリングされます)。 | ||
結合が発行する可能性のある行数は、2つの入力の直積のカーディナリティに選択性を掛けたものとして計算されます。 | ||
これは、各リレーションにおいて、1からNULL部分を差し引き、それを大きい方のリレーションの行数で割ります(この値は一意でない場合にはスケーリングされます)。 | ||
この結合が生成するはずの行数は、2つの入力のデカルト積のカーディナリティに、この選択度を掛けたものとして計算されます。 | ||
|
||
<programlisting> | ||
rows = (outer_cardinality * inner_cardinality) * selectivity | ||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newの意味は残したほうが良いと思うので、前バージョンの訳のままでも良いと思いました。