dblink_is_busy <refpurpose>checks if connection is busy with an async query</refpurpose> — 接続において非同期問い合わせが実行中か検査します
dblink_is_busy(text connname) returns int
<function>dblink_is_busy</function> tests whether an async query is in progress.
dblink_is_busy
は非同期問い合わせが進行中かどうか試験します。
connname
Name of the connection to check. 検査対象の接続名です。
Returns 1 if connection is busy, 0 if it is not busy.
If this function returns 0, it is guaranteed that
<function>dblink_get_result</function> will not block.
接続において進行中だった場合は1、さもなくば0を返します。
この関数が0を返した場合、dblink_get_result
がブロックされないことが保証されます。
SELECT dblink_is_busy('dtest1');