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

tupleがタプルになるように見直しました #3218

Merged
merged 1 commit into from
Feb 9, 2025
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/brin.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
large parts of the table that are known not to contain matching tuples.
-->
<acronym>BRIN</acronym>インデックスは、通常のビットマップインデックススキャンを通じて要求されるクエリに使用することができます。
すなわち、インデックス内のレンジ要約情報が検索条件と<firstterm>一致</firstterm>すれば、<acronym>BRIN</acronym>インデックスは、レンジ内の全タプルを返します
すなわち、インデックス内のレンジ要約情報が検索条件と<firstterm>一致</firstterm>すれば、<acronym>BRIN</acronym>インデックスは各レンジ内のすべてのページにあるすべてのタプルを返します
クエリエグゼキュータの役割は、検索条件を再チェックし、条件に合致しないタプルを捨てることです。
つまり言い換えると、<acronym>BRIN</acronym>インデックスには損失性があります。
<acronym>BRIN</acronym>インデックスは非常に小さいため、それに対するスキャンはシーケンシャルスキャンに比べると小さなオーバーヘッドしか与えません。しかし、あらかじめ条件に合致しないと分かっているテーブルの多くの部分をスキャンすることを避けることができます。
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/config.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -8467,7 +8467,7 @@ RAM内に存在するページの取り出しコストは通常よりもかな
from a parallel worker process to another process.
The default is 0.1.
-->
あるパラレルワーカープロセスから、1行を他のプロセスに転送するためのコストに対するプランナの推測値を設定します
あるパラレルワーカープロセスから、1タプルを他のプロセスに転送するためのコストに対するプランナの推測値を設定します
デフォルトは0.1です。
</para>
</listitem>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/config1.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -4309,7 +4309,7 @@ RAM内に存在するページの取り出しコストは通常よりもかな
from a parallel worker process to another process.
The default is 0.1.
-->
あるパラレルワーカープロセスから、1行を他のプロセスに転送するためのコストに対するプランナの推測値を設定します
あるパラレルワーカープロセスから、1タプルを他のプロセスに転送するためのコストに対するプランナの推測値を設定します
デフォルトは0.1です。
</para>
</listitem>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/dblink.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -2707,7 +2707,7 @@ SELECT dblink_build_sql_delete('"MyFoo"', '1 2', 2, '{"1", "b"}');
the primary key field values with alternative supplied values
</refpurpose>
-->
<refpurpose>主キーフィールドの値として提供された値を使用したUPDATE文を構築します
<refpurpose>主キーフィールドの値として提供された値を使用してローカル側のタプルを使用し、UPDATE文を構築します
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dblink_build_sql_insert に対する記述に倣って、「ローカル側のタプルを使用し、主キーフィールドの値を別の提供される値に置き換えてUPDATE文を構築します」ではないでしょうか。

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

コメント事項は以上です。

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

すみません、コメントをペンディングにしたままでした

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

たしかにそうでした。
修正します。

</refpurpose>
</refnamediv>

Expand Down