-
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. ご指摘の通りです。対応します。 |
||
これは<literal>COMPRESSION</literal>オプションと一緒にのみ使用します。 | ||
値が整数の場合は、圧縮レベルを指定します。 | ||
それ以外の場合は、カンマで区切られたアイテムのリストであり、それぞれの形式は<replaceable>keyword</replaceable>または<replaceable>keyword=value</replaceable>です。 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -486,10 +486,10 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM | |
<xref linkend="guc-default-toast-compression"/> setting at the time of | ||
data insertion to determine the method to use. | ||
--> | ||
<literal>COMPRESSION</literal>句は列の圧縮法を設定します。圧縮は可変幅データ型に対してのみサポートされていて、列の格納モードが<literal>main</literal>または<literal>extended</literal>の場合にのみ使われます。 | ||
<literal>COMPRESSION</literal>句は列の圧縮方式を設定します。圧縮は可変幅データ型に対してのみサポートされていて、列の格納モードが<literal>main</literal>または<literal>extended</literal>の場合にのみ使われます。 | ||
(列の格納モードについての情報は<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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. 見落としていました。ありがとうございます。 |
||
</para> | ||
|
@@ -998,8 +998,8 @@ Bツリー演算子クラスがない場合はエラーが報告されます。 | |
behavior is to exclude compression methods, resulting in columns | ||
having the default compression method. | ||
--> | ||
列の圧縮法をコピーします。 | ||
デフォルトの振る舞いでは圧縮法は除外されて、列にはデフォルトの圧縮法が設定されます。 | ||
列の圧縮方式をコピーします。 | ||
デフォルトの振る舞いでは圧縮方式は除外されて、列にはデフォルトの圧縮方式が設定されます。 | ||
</para> | ||
</listitem> | ||
</varlistentry> | ||
|
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.
そうでした。失念していました。