diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-03-16 08:11:24 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-03-16 08:13:02 -0400 |
commit | 5f588e20051eb18333f6ea5b46bd779ba1eb8773 (patch) | |
tree | edcee8185658e0183fa31bff487aeed5400fd383 /doc/src | |
parent | 72cfc17aef4fc9aa2de1c82045b7d609c0f2c513 (diff) | |
download | postgresql-5f588e20051eb18333f6ea5b46bd779ba1eb8773.tar.gz postgresql-5f588e20051eb18333f6ea5b46bd779ba1eb8773.zip |
Corrections to CREATE FOREIGN TABLE documentation.
Omit incorrect = sign, and properly document server_name parameter.
Shigeru Hanada
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_foreign_table.sgml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml index 77c62140f28..ad91072bd12 100644 --- a/doc/src/sgml/ref/create_foreign_table.sgml +++ b/doc/src/sgml/ref/create_foreign_table.sgml @@ -126,7 +126,16 @@ CREATE FOREIGN TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name </varlistentry> <varlistentry> - <term><literal>OPTIONS ( <replaceable class="PARAMETER">option</replaceable> = '<replaceable class="PARAMETER">value</replaceable>' [, ...] )</literal></term> + <term><replaceable class="PARAMETER">server_name</replaceable></term> + <listitem> + <para> + The name of an existing server for the foreign table. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term><literal>OPTIONS ( <replaceable class="PARAMETER">option</replaceable> '<replaceable class="PARAMETER">value</replaceable>' [, ...] )</literal></term> <listitem> <para> Options to be associated with the new foreign table. |