diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-04-01 11:28:28 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-04-01 11:28:28 -0400 |
commit | 50533a6dc515cc3182f52838275c9d2a1f587604 (patch) | |
tree | 16489ffa766ce9d3134888d11466c228dbf8d49c /doc/src | |
parent | 7fcc75dd26ff0fee0b02f1b8b4215c298ca974ca (diff) | |
download | postgresql-50533a6dc515cc3182f52838275c9d2a1f587604.tar.gz postgresql-50533a6dc515cc3182f52838275c9d2a1f587604.zip |
Support comments on FOREIGN DATA WRAPPER and SERVER objects.
This mostly involves making it work with the objectaddress.c framework,
which does most of the heavy lifting. In that vein, change
GetForeignDataWrapperOidByName to get_foreign_data_wrapper_oid and
GetForeignServerOidByName to get_foreign_server_oid, to match the
pattern we use for other object types.
Robert Haas and Shigeru Hanada
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/comment.sgml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/sgml/ref/comment.sgml b/doc/src/sgml/ref/comment.sgml index bc848b30699..1cdc49ff5fe 100644 --- a/doc/src/sgml/ref/comment.sgml +++ b/doc/src/sgml/ref/comment.sgml @@ -33,6 +33,7 @@ COMMENT ON DATABASE <replaceable class="PARAMETER">object_name</replaceable> | DOMAIN <replaceable class="PARAMETER">object_name</replaceable> | EXTENSION <replaceable class="PARAMETER">object_name</replaceable> | + FOREIGN DATA WRAPPER <replaceable class="PARAMETER">object_name</replaceable> | FOREIGN TABLE <replaceable class="PARAMETER">object_name</replaceable> | FUNCTION <replaceable class="PARAMETER">function_name</replaceable> ( [ [ <replaceable class="parameter">argmode</replaceable> ] [ <replaceable class="parameter">argname</replaceable> ] <replaceable class="parameter">argtype</replaceable> [, ...] ] ) | INDEX <replaceable class="PARAMETER">object_name</replaceable> | @@ -45,6 +46,7 @@ COMMENT ON RULE <replaceable class="PARAMETER">rule_name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> | SCHEMA <replaceable class="PARAMETER">object_name</replaceable> | SEQUENCE <replaceable class="PARAMETER">object_name</replaceable> | + SERVER <replaceable class="PARAMETER">object_name</replaceable> | TABLESPACE <replaceable class="PARAMETER">object_name</replaceable> | TEXT SEARCH CONFIGURATION <replaceable class="PARAMETER">object_name</replaceable> | TEXT SEARCH DICTIONARY <replaceable class="PARAMETER">object_name</replaceable> | |