dblink_cancel_query <refpurpose>cancels any active query on the named connection</refpurpose> — 名前付き接続上の実行中の問い合わせをすべて取り消します
dblink_cancel_query(text connname) returns text
<function>dblink_cancel_query</function> attempts to cancel any query that
is in progress on the named connection. Note that this is not
certain to succeed (since, for example, the remote query might
already have finished). A cancel request simply improves the
odds that the query will fail soon. You must still complete the
normal query protocol, for example by calling
<function>dblink_get_result</function>.
dblink_cancel_query
は名前付き接続上で進行中の問い合わせをすべて取り消そうとします。
これは成功するとは限らないことに注意してください(例えばリモート問い合わせがすでに終わっているかもしれないからです)。
取り消し要求は単に問い合わせがすぐに失敗する可能性を大きくするだけです。
例えば、dblink_get_result
を呼び出すなど、通常の問い合わせ手順を完了させる必要があります。
connname
Name of the connection to use. 使用する接続名です。
Returns <literal>OK</literal> if the cancel request has been sent, or
the text of an error message on failure.
取り消し要求が送信された場合OK
を、さもなくば失敗についてのエラーメッセージテキストを返します。
SELECT dblink_cancel_query('dtest1');