commit 6de507c87f78e46c435e79afe145f839dd5a8356 Author: David G. Johnston Date: Wed Sep 30 02:26:31 2020 +0000 Use emit and deliver consistently in NOTIFY docs diff --git a/doc/src/sgml/ref/notify.sgml b/doc/src/sgml/ref/notify.sgml index d7dcbea02d..111e3b2146 100644 --- a/doc/src/sgml/ref/notify.sgml +++ b/doc/src/sgml/ref/notify.sgml @@ -76,7 +76,7 @@ NOTIFY channel [ , NOTIFY interacts with SQL transactions in some important ways. Firstly, if a NOTIFY is executed inside a - transaction, the notify events are not delivered until and unless the + transaction, the notify events are not emitted until and unless the transaction is committed. This is appropriate, since if the transaction is aborted, all the commands within it have had no effect, including NOTIFY. But it can be disconcerting if one @@ -154,8 +154,8 @@ NOTIFY channel [ , Notes - There is a queue that holds notifications that have been sent but not - yet processed by all listening sessions. If this queue becomes full, + There is a queue that holds emitted notifications that have not been + delivered to all connected clients. If this queue becomes full, transactions calling NOTIFY will fail at commit. The queue is quite large (8GB in a standard installation) and should be sufficiently sized for almost every use case. However, no cleanup can take