diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-06-02 18:00:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-06-02 18:00:00 +0900 |
commit | 642e9165fd511315f0c5c3ad940f6ded42752dbe (patch) | |
tree | df002a1b505b40c5be9eaff63a7a16b28aa6df03 /doc | |
parent | fd0b9dcebda7b931a41ce5c8e86d13f2efd0af2e (diff) | |
download | postgresql-642e9165fd511315f0c5c3ad940f6ded42752dbe.tar.gz |
Doc: Further fix CREATE FOREIGN TABLE synopsis.
This patch fixes the partitioning synopsis in the Parameters section in
the CREATE FOREIGN TABLE documentation. Follow-up for commit ce21a36cf.
Back-patch to v11 where default partition was introduced.
Reviewed by Amit Langote and Robert Haas.
Discussion: https://postgr.es/m/CAPmGK17U5jEqVZuo3r38wB0VFWomEtJCBGn_h92HQzQ2sP-49Q%40mail.gmail.com
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/sgml/ref/create_foreign_table.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml index 6b208c4848..ae1f94b9de 100644 --- a/doc/src/sgml/ref/create_foreign_table.sgml +++ b/doc/src/sgml/ref/create_foreign_table.sgml @@ -173,7 +173,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM </varlistentry> <varlistentry> - <term><literal>PARTITION OF <replaceable>parent_table</replaceable> FOR VALUES <replaceable class="parameter">partition_bound_spec</replaceable></literal></term> + <term><literal>PARTITION OF <replaceable>parent_table</replaceable> { FOR VALUES <replaceable class="parameter">partition_bound_spec</replaceable> | DEFAULT }</literal></term> <listitem> <para> This form can be used to create the foreign table as partition of |