diff options
author | Nathan Bossart | 2025-07-11 16:51:25 +0000 |
---|---|---|
committer | Nathan Bossart | 2025-07-11 16:51:25 +0000 |
commit | a4f126516e688736bfed332b44a0c221b8dc118a (patch) | |
tree | b921beb43ae0acd7a8ce510896e2c6d1b06fd831 /doc/src | |
parent | bb938e2c3c7a955090f8b68b5bf75d064f6a36a0 (diff) |
Add option list to CHECKPOINT command.
This commit adds the boilerplate code for supporting a list of
options in CHECKPOINT commands. No actual options are supported
yet, but follow-up commits will add support for MODE and
FLUSH_UNLOGGED. While at it, this commit refactors the code for
executing CHECKPOINT commands to its own function since it's about
to become significantly larger.
Author: Christoph Berg <[email protected]>
Reviewed-by: Fujii Masao <[email protected]>
Discussion: https://postgr.es/m/aDnaKTEf-0dLiEfz%40msg.df7cb.de
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/checkpoint.sgml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/checkpoint.sgml b/doc/src/sgml/ref/checkpoint.sgml index 10a433e4757..fad5e982d03 100644 --- a/doc/src/sgml/ref/checkpoint.sgml +++ b/doc/src/sgml/ref/checkpoint.sgml @@ -21,7 +21,9 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -CHECKPOINT +CHECKPOINT [ ( option [, ...] ) ] + +<phrase>where <replaceable class="parameter">option</replaceable> can be one of:</phrase> </synopsis> </refsynopsisdiv> @@ -59,6 +61,13 @@ CHECKPOINT </refsect1> <refsect1> + <title>Parameters</title> + + <para> + </para> + </refsect1> + + <refsect1> <title>Compatibility</title> <para> |