diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-02-26 12:47:29 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-02-26 12:47:29 -0500 |
commit | 58838a7a52a913c66084158f98f1f62349ee6335 (patch) | |
tree | a2d2f0a5ffb59e786265b85c466bdbdb7fd1bb8e /doc/src | |
parent | 86434afb11093ba4e2893b717858d8ce790f3e2e (diff) | |
download | postgresql-58838a7a52a913c66084158f98f1f62349ee6335.tar.gz postgresql-58838a7a52a913c66084158f98f1f62349ee6335.zip |
Document that pg_options_to_table() also works for
pg_attribute.attoptions.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 2f4c3dcc70b..9c8e19f9afc 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -13386,7 +13386,7 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); <row> <entry><literal><function>pg_options_to_table(<parameter>reloptions</parameter>)</function></literal></entry> <entry><type>setof record</type></entry> - <entry>get the set of option name/value pairs from <structname>pg_class</>.<structfield>reloptions</></entry> + <entry>get the set of storage option name/value pairs</></entry> </row> <row> <entry><literal><function>pg_tablespace_databases(<parameter>tablespace_oid</parameter>)</function></literal></entry> @@ -13484,9 +13484,10 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); </para> <para> - <function>pg_options_to_table</function> returns the set of option + <function>pg_options_to_table</function> returns the set of storage option name/value pairs when passed - <structname>pg_class</>.<structfield>reloptions</>. + <structname>pg_class</>.<structfield>reloptions</> or + <structname>pg_attribute</>.<structfield>attoptions</>. </para> <para> |