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

add "ブーリアン" to NG list #2494

Merged
merged 2 commits into from
Dec 31, 2022
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 .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