aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2017-06-12 14:49:25 +0900
committerTatsuo Ishii <ishii@postgresql.org>2017-06-12 14:49:25 +0900
commiteab86897bd8cbeb21ae8959ca9a095ce7cb663df (patch)
tree6e5f3cd848d62d7684071e19ec1a6e8cda871cda
parent51893985d3bcf27304283f7fa67f17e017d2dafd (diff)
downloadpostgresql-eab86897bd8cbeb21ae8959ca9a095ce7cb663df.tar.gz
postgresql-eab86897bd8cbeb21ae8959ca9a095ce7cb663df.zip
Fix ALTER TABLE doc examples.
Patch by Yugo Nagata <nagata@sraoss.co.jp>. Confirmed by Amit Langote, who is the original author of the document part.
-rw-r--r--doc/src/sgml/ref/alter_table.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 56ea830d413..4c61c442650 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -1398,7 +1398,7 @@ ALTER TABLE cities
<para>
Detach a partition from partitioned table:
<programlisting>
-ALTER TABLE cities
+ALTER TABLE measurement
DETACH PARTITION measurement_y2015m12;
</programlisting></para>