diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2017-06-12 14:49:25 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2017-06-12 14:49:25 +0900 |
commit | eab86897bd8cbeb21ae8959ca9a095ce7cb663df (patch) | |
tree | 6e5f3cd848d62d7684071e19ec1a6e8cda871cda | |
parent | 51893985d3bcf27304283f7fa67f17e017d2dafd (diff) | |
download | postgresql-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.sgml | 2 |
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> |