diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-02-27 03:50:12 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-02-27 03:50:12 -0500 |
commit | 721ea41f1413bee70839c957a08eca62799e274f (patch) | |
tree | 2f10fd815745aadd584a0eee40cf95cee3363661 | |
parent | be6668d6eff6a03455b48fa8ce1a397ff5bae788 (diff) | |
download | postgresql-721ea41f1413bee70839c957a08eca62799e274f.tar.gz postgresql-721ea41f1413bee70839c957a08eca62799e274f.zip |
Fix markup for pg_options_to_table() to report the return column names,
per suggestion from Andrew.
-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 9c8e19f9afc..679f856b9ce 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 storage option name/value pairs</></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,8 +13484,9 @@ SELECT pg_type_is_visible('myschema.widget'::regtype); </para> <para> - <function>pg_options_to_table</function> returns the set of storage option - name/value pairs when passed + <function>pg_options_to_table</function> returns the set of storage + option name/value pairs + (<literal>option_name</>/<literal>option_value</>) when passed <structname>pg_class</>.<structfield>reloptions</> or <structname>pg_attribute</>.<structfield>attoptions</>. </para> |