-
Notifications
You must be signed in to change notification settings - Fork 82
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
compression methodを圧縮方式に統一(iessues2865の対応) #2941
compression methodを圧縮方式に統一(iessues2865の対応) #2941
Conversation
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.
確認しました。
@@ -4901,7 +4901,7 @@ WALの更新をディスクへ強制するのに使用される方法です。 | |||
Only superusers and users with the appropriate <literal>SET</literal> | |||
privilege can change this setting. | |||
--> | |||
このパラメータは、指定された圧縮方法を使用したWALの圧縮を有効にします。 | |||
このパラメータは、指定された圧縮方式を使用したWALの圧縮を有効にします。 |
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.
これは問題ないのですが。config.sgmlなのでconfig1とかの分割ファイルもコミットしないといけないのでは。
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.
そうでした。失念していました。
@@ -4023,7 +4023,7 @@ falseの場合、バックアップは待機も警告もせず、必要なログ | |||
keywords are <literal>level</literal>, <literal>long</literal> and | |||
<literal>workers</literal>. | |||
--> | |||
選択した圧縮方法の詳細を指定します。 | |||
選択した圧縮方式の詳細を指定します。 |
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.
ここは問題ないですが、上の4006、4007行目で「〜方法」と言及しているものも、実は圧縮のことなので合わせて「方式」に変更すべきかと。
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.
ご指摘の通りです。対応します。
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.
対応ありがとうございます。確認しました。
doc/src/sgml/ref/create_table.sgml
Outdated
(列の格納モードについての情報は<xref linkend="sql-altertable"/>を参照してください。) | ||
パーティションテーブルには自身のストレージがありませんので、パーティションテーブルに対してこの属性を設定しても直接の影響はありませんが、設定値は新しく作成されるパーティションに継承されます。 | ||
サポートされている圧縮法は<literal>pglz</literal>と<literal>lz4</literal>です。 | ||
サポートされている圧縮方式は<literal>pglz</literal>と<literal>lz4</literal>です。 | ||
(<literal>lz4</literal>は、<productname>PostgreSQL</productname>構築時に<option>--with-lz4</option>が使われた場合にのみ利用可能です。) | ||
さらに<replaceable class="parameter">compression_method</replaceable>は、明示的にデフォルトの動作を指定するために<literal>default</literal>とすることもできます。その場合、利用する圧縮法を決定するためにデータ挿入時に<xref linkend="guc-default-toast-compression"/>設定を調べます。 |
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.
利用する圧縮法を決定するために
ここにも「圧縮法」が残ってます。
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.
見落としていました。ありがとうございます。
確認しました。 |
#2865 の対応です。