summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier2012-06-19 05:39:32 +0000
committerMichael Paquier2012-06-19 05:39:32 +0000
commit037ea439d49bee51fe8af01385badf921db1e867 (patch)
treef2fffea6f706fed8994fc9377ee5105de6363343
parenta593cbdbbb437636d44ceb86c81c82c831ba612a (diff)
Correct typo on documentation of CTAS for clause TO NODE/GROUP
-rw-r--r--doc-xc/src/sgml/ref/create_table_as.sgmlin2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc-xc/src/sgml/ref/create_table_as.sgmlin b/doc-xc/src/sgml/ref/create_table_as.sgmlin
index ff7fb59b28..70522fb3e3 100644
--- a/doc-xc/src/sgml/ref/create_table_as.sgmlin
+++ b/doc-xc/src/sgml/ref/create_table_as.sgmlin
@@ -39,7 +39,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE <replaceable
[ ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP } ]
[ TABLESPACE <replaceable class="PARAMETER">tablespace</replaceable> ]
[ DISTRIBUTE BY { REPLICATION | ROUND ROBIN | { [HASH | MODULO ] ( <replaceable class="PARAMETER">column_name</replaceable> ) } } ]
- [ TO ( GROUP <replaceable class="PARAMETER">groupname</replaceable> | NODE <replaceable class="PARAMETER">nodename</replaceable> [, ... ] ) ]
+ [ TO { GROUP <replaceable class="PARAMETER">groupname</replaceable> | NODE <replaceable class="PARAMETER">nodename</replaceable> [, ... ] } ]
AS <replaceable>query</replaceable>
[ WITH [ NO ] DATA ]
</synopsis>