Skip to content

Commit

Permalink
文の数から見つけた訳抜けの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
noborus committed Jan 29, 2025
1 parent f4fb642 commit d0d68aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
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

0 comments on commit d0d68aa

Please sign in to comment.