mirror of
https://github.com/postgres/postgres.git
synced 2026-03-24 19:34:27 -04:00
Add new "-n" flag to pg_dump.
Update UNLISTEN to not require double-quotes around the wildcard argument. Clean up markup.
This commit is contained in:
parent
d98011d8de
commit
5a61590e48
2 changed files with 10 additions and 2 deletions
|
|
@ -278,6 +278,7 @@ The limitations mostly stem from
|
|||
difficulty in extracting certain meta-information from the system
|
||||
catalogs.
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>
|
||||
partial indices
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ Stop listening for notification on a notify condition
|
|||
<DATE>1998-10-07</DATE>
|
||||
</REFSYNOPSISDIVINFO>
|
||||
<SYNOPSIS>
|
||||
UNLISTEN <REPLACEABLE CLASS="PARAMETER">notifyname</REPLACEABLE> | "*"
|
||||
UNLISTEN { <REPLACEABLE CLASS="PARAMETER">notifyname</REPLACEABLE> | * }
|
||||
</SYNOPSIS>
|
||||
|
||||
<REFSECT2 ID="R2-SQL-UNLISTEN-1">
|
||||
|
|
@ -38,7 +38,14 @@ Inputs
|
|||
<LISTITEM>
|
||||
<PARA>
|
||||
Name of notify condition to stop listening to.
|
||||
If "*", all current listen registrations for this backend are cleared.
|
||||
|
||||
<VARLISTENTRY>
|
||||
<TERM>
|
||||
<literal>*</literal>
|
||||
</TERM>
|
||||
<LISTITEM>
|
||||
<PARA>
|
||||
All current listen registrations for this backend are cleared.
|
||||
|
||||
</VARIABLELIST>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue