Skip to content
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
8 changes: 4 additions & 4 deletions doc/src/sgml/plperl.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -1958,7 +1958,7 @@ PL/Perlを使用してイベントトリガ関数を作成することができ
<!--
The name of the event the trigger is fired for.
-->
イベントトリガ名が発行された
トリガの発行元イベントの名前。
</para>
</listitem>
</varlistentry>
Expand All @@ -1970,7 +1970,7 @@ PL/Perlを使用してイベントトリガ関数を作成することができ
<!--
The command tag for which the trigger is fired.
-->
トリガの発行元コマンドタグ
トリガの発行元コマンドタグ
</para>
</listitem>
</varlistentry>
Expand All @@ -1981,7 +1981,7 @@ PL/Perlを使用してイベントトリガ関数を作成することができ
<!--
The return value of the trigger function is ignored.
-->
トリガ関数の戻り値は無視されます
トリガ関数の戻り値は無視されます
</para>

<para>
Expand Down Expand Up @@ -2056,7 +2056,7 @@ Perlインタプリタが最初に初期化され、<literal>plperl</literal>ま
-->
このPerlコードは単一文字列に制限されます。
長いコードをモジュール化し、<literal>on_init</literal>文字列でロードすることができます。
以下に例を示します。
例:
<programlisting>
plperl.on_init = 'require "plperlinit.pl"'
plperl.on_init = 'use lib "/my/app"; use MyApp::PgInit;'
Expand Down
12 changes: 6 additions & 6 deletions doc/src/sgml/plpgsql.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ SELECT add_three_values(1, 2, 4.7);
<!--
Examples:
-->
以下に例を示します。
例:
<programlisting>
DECLARE
prior ALIAS FOR old;
Expand Down Expand Up @@ -3402,7 +3402,7 @@ END CASE;
<!--
Here is an example:
-->
以下は簡単な例です
以下に例を示します

<programlisting>
CASE
Expand Down Expand Up @@ -3648,7 +3648,7 @@ CONTINUE <optional> <replaceable>label</replaceable> </optional> <optional> WHEN
<!--
Examples:
-->
<programlisting>
LOOP
<!--
Expand Down Expand Up @@ -5109,7 +5109,7 @@ MOVE <optional> <replaceable>direction</replaceable> { FROM | IN } </optional> <
<!--
Examples:
-->
:
<programlisting>
MOVE curs1;
MOVE LAST FROM curs3;
Expand Down Expand Up @@ -5410,7 +5410,7 @@ END LOOP <optional> <replaceable>label</replaceable> </optional>;
<!--
Here is a simple example:
-->
以下に例を示します
以下は簡単な例です
<programlisting>
CREATE PROCEDURE transaction_test1()
LANGUAGE plpgsql
Expand Down Expand Up @@ -6770,7 +6770,7 @@ CREATE OR REPLACE FUNCTION process_emp_audit() RETURNS TRIGGER AS $emp_audit$
<!--
RETURN NULL; &#45;- result is ignored since this is an AFTER trigger
-->
RETURN NULL; -- これはAFTERトリガなので結果は無視される
RETURN NULL; -- AFTERトリガですので、結果は無視されます
END;
$emp_audit$ LANGUAGE plpgsql;

Expand Down
9 changes: 5 additions & 4 deletions doc/src/sgml/plpython.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ $$ LANGUAGE plpython3u;
with the column name as key. Example:
-->
結果型の列の値は、列名をキーとして持つマップから取り出されます。
以下に例を示します。
例:

<programlisting>
CREATE FUNCTION make_pair (name text, value integer)
Expand Down Expand Up @@ -683,7 +683,7 @@ $$ LANGUAGE plpython3u;
Example:
-->
これはマップと同じように動作します。
以下に例を示します。
例:

<programlisting>
CREATE FUNCTION make_pair (name text, value integer)
Expand Down Expand Up @@ -921,8 +921,9 @@ $$ LANGUAGE plpython3u;
An anonymous code block receives no arguments, and whatever value it
might return is discarded. Otherwise it behaves just like a function.
-->
匿名コードブロックは引数を持たず、また、何か値を返したとしても破棄されます。
その他は関数とまったく同様に動作します。
匿名コードブロックは引数を取りません。
また何らかの値を返したとしても破棄されます。
その他は関数と同様に動作します。
</para>
</sect1>

Expand Down
8 changes: 4 additions & 4 deletions doc/src/sgml/pltcl.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ CREATE TRIGGER trig_mytab_modcount BEFORE INSERT OR UPDATE ON mytab
<!--
The name of the event the trigger is fired for.
-->
トリガが発行されたイベント名
トリガの発行元イベントの名前。
</para>
</listitem>
</varlistentry>
Expand All @@ -1186,7 +1186,7 @@ CREATE TRIGGER trig_mytab_modcount BEFORE INSERT OR UPDATE ON mytab
<!--
The command tag for which the trigger is fired.
-->
トリガが発行されたコマンドタグ
トリガの発行元コマンドタグ。
</para>
</listitem>
</varlistentry>
Expand Down Expand Up @@ -1352,7 +1352,7 @@ PL/Tclは明示的なトランザクションの手法でこの問題を解決
<!--
Consider a function that implements a transfer between two accounts:
-->
2つのアカウントの間の送金を実装する関数を考えます
2つの口座の間の振替えを実装する関数を考えてみます
<programlisting>
CREATE FUNCTION transfer_funds() RETURNS void AS $$
if [catch {
Expand Down Expand Up @@ -1490,7 +1490,7 @@ CALL transaction_test1();
<!--
Transactions cannot be ended when an explicit subtransaction is active.
-->
明示的なサブトランザクションの中ではトランザクションを終了することはできません
トランザクションは明示的なサブトランザクションの中では終了できません
</para>
</sect1>

Expand Down
Loading