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

文の数から見つけた訳抜けの修正 #3212

Merged
merged 1 commit into from
Jan 30, 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
1 change: 1 addition & 0 deletions doc/src/sgml/ddl.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -2327,6 +2327,7 @@ ALTER TABLE products DROP COLUMN description CASCADE;
To add a constraint, the table constraint syntax is used. For example:
-->
制約を追加するには、テーブル制約の構文が使用されます。
例を示します。
<programlisting>
ALTER TABLE products ADD CHECK (name &lt;&gt; '');
ALTER TABLE products ADD CONSTRAINT some_name UNIQUE (product_no);
Expand Down
1 change: 1 addition & 0 deletions doc/src/sgml/logicaldecoding.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,7 @@ CREATE TABLE another_catalog_table(data text) WITH (user_catalog_table = true);
SQLで変更データを見るような場合、任意のかたちでデータを返すことのできるデータ型(たとえば<type>bytea</type>)は扱いにくいです。
出力プラグインがサーバエンコーディングのテキストデータのみを含むことにするには、<link linkend="logicaldecoding-output-plugin-startup">起動コールバック</link>で、<literal>OutputPluginOptions.output_type</literal>に<literal>OUTPUT_PLUGIN_BINARY_OUTPUT</literal>ではなく、<literal>OUTPUT_PLUGIN_TEXTUAL_OUTPUT</literal>を設定することによって宣言できます。
この場合、<type>text</type>datumが格納することができるように、すべてのデータはサーバエンコーディングでエンコードされていなければなりません。
これは、アサーションが有効なビルドでチェックされます。
</para>
</sect2>

Expand Down
1 change: 1 addition & 0 deletions doc/src/sgml/textsearch.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -1818,6 +1818,7 @@ ts_headline(<optional> <replaceable class="parameter">config</replaceable> <type
The available options are:
-->
<replaceable>options</replaceable>文字列を指定する場合は、一つ以上の<replaceable>option</replaceable><literal>=</literal><replaceable>value</replaceable>のペアをカンマで区切ったものでなければなりません。
利用可能なオプションは以下の通りです。

<itemizedlist spacing="compact" mark="bullet">
<listitem>
Expand Down