Skip to content

Commit

Permalink
Merge pull request #2494 from koizumistr/ng_bool_val
Browse files Browse the repository at this point in the history
add "ブーリアン" to NG list
  • Loading branch information
KenichiroTanaka authored Dec 31, 2022
2 parents e2f300e + 4e4fa91 commit 239e835
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .ng.list
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
スタンドアロン
エクゼキュータ
フリースペースマップ
ブーリアン
### ヘッダーファイル
### オーバ[^ー]
### ワーカ[^ー]
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/ref/create_foreign_table.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
reference that column's value only, while an expression
appearing in a table constraint can reference multiple columns.
-->
<literal>CHECK</literal>句では、外部テーブルの各行が満たすと期待されるブーリアン結果を生成する式を指定します
<literal>CHECK</literal>句では、外部テーブルの各行が満たすと期待される論理値の結果を生成する式を指定します
つまり、式は外部テーブルのすべての行に対して、TRUEまたはUNKNOWNを生成し、決してFALSEにはなりません。
列制約として指定したチェック制約はその列の値だけを参照しますが、テーブル制約として使われる式は複数の列を参照することができます。
</para>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/ref/insert.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ INSERT INTO distributors (did, dname) VALUES (9, 'Antwerp Design')
<literal>true</literal>:
-->
可能であれば新しい販売店を挿入しますが、できないときは<literal>DO NOTHING</literal>とします。
この例では、<literal>is_active</literal>というブーリアン列が<literal>true</literal>である行という条件で、<literal>did</literal>列に一意インデックスが定義されているものとしています。
この例では、<literal>is_active</literal>という論理値の列が<literal>true</literal>である行という条件で、<literal>did</literal>列に一意インデックスが定義されているものとしています。
<programlisting>
<!--
&#45;- This statement could infer a partial unique index on "did"
Expand Down
2 changes: 1 addition & 1 deletion doc/src/sgml/syntax.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -3791,7 +3791,7 @@ SELECT somefunc() OR true;
<quote>short-circuiting</quote> of Boolean operators that is found
in some programming languages.
-->
これは一部のプログラミング言語に見られる、ブーリアン演算子での左から右への<quote>短絡評価</quote>とは異なることに注意してください。
これは一部のプログラミング言語に見られる、論理演算子での左から右への<quote>短絡評価</quote>とは異なることに注意してください。
</para>

<para>
Expand Down

0 comments on commit 239e835

Please sign in to comment.