aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-11-08 17:20:53 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2017-11-08 17:21:01 -0500
commit6c05b8150327ca5f58e47ebe4f2dfa235ef930e5 (patch)
tree549b3692a29487159d0c6c568795d63ae67e0a05
parent442bc4160caee01579f5c112c23d9bb5f121f6b6 (diff)
downloadpostgresql-6c05b8150327ca5f58e47ebe4f2dfa235ef930e5.tar.gz
postgresql-6c05b8150327ca5f58e47ebe4f2dfa235ef930e5.zip
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
-rw-r--r--doc/src/sgml/ddl.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index b05a9c21500..89805fb5adf 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;
</programlisting>
</para>