diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-15 21:11:14 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-15 21:11:14 +0300 |
commit | bf3c5856818a88b963748402f4f7e0274fe3859d (patch) | |
tree | 21f0f43fdf5e4ef031dd79d0a7b4f82d02bb7cae /doc/src | |
parent | c1129a14e192755e001ba7899d4a9ca216e4ec3c (diff) | |
download | postgresql-bf3c5856818a88b963748402f4f7e0274fe3859d.tar.gz postgresql-bf3c5856818a88b963748402f4f7e0274fe3859d.zip |
Set information_schema.tables.commit_action to null
The commit action of temporary tables is currently not cataloged, so
we can't easily show it. The previous value was outdated from before
we had different commit actions.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 4b3712e60fa..5d29d412d26 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -5416,12 +5416,7 @@ ORDER BY c.ordinal_position; <row> <entry><literal>commit_action</literal></entry> <entry><type>character_data</type></entry> - <entry> - If the table is a temporary table, then - <literal>PRESERVE</literal>, else null. (The SQL standard - defines other commit actions for temporary tables, which are - not supported by <productname>PostgreSQL</>.) - </entry> + <entry>Not yet implemented</entry> </row> </tbody> </tgroup> |