From: Tom Lane Date: Wed, 8 Nov 2017 22:20:53 +0000 (-0500) Subject: Doc: fix erroneous example. X-Git-Tag: REL_11_BETA1~1264 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd65e0c62486e6108a7dc824f918754a13072f7a;p=postgresql Doc: fix erroneous example. The grammar requires these options to appear the other way 'round. jotpe@posteo.de Discussion: https://postgr.es/m/78933bd0-45ce-690e-b832-a328dd1a5567@posteo.de --- diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 03cbaa60ab..3f41939bea 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3095,8 +3095,8 @@ CREATE TABLE measurement_y2007m12 PARTITION OF measurement CREATE TABLE measurement_y2008m01 PARTITION OF measurement FOR VALUES FROM ('2008-01-01') TO ('2008-02-01') - TABLESPACE fasttablespace - WITH (parallel_workers = 4); + WITH (parallel_workers = 4) + TABLESPACE fasttablespace;