diff options
author | Kevin Grittner <kgrittn@postgresql.org> | 2013-03-22 13:27:34 -0500 |
---|---|---|
committer | Kevin Grittner <kgrittn@postgresql.org> | 2013-03-22 13:27:34 -0500 |
commit | 549dae0352a06a43ec664dc158556e12ec2d30e5 (patch) | |
tree | 603071d01487f6b6a8185b5475e63cf3e82b9981 /doc/src | |
parent | 4912385b56afe68ef76e47d38df1d61ada0fde2f (diff) | |
download | postgresql-549dae0352a06a43ec664dc158556e12ec2d30e5.tar.gz postgresql-549dae0352a06a43ec664dc158556e12ec2d30e5.zip |
Fix problems with incomplete attempt to prohibit OIDS with MVs.
Problem with assertion failure in restoring from pg_dump output
reported by Joachim Wieland.
Review and suggestions by Tom Lane and Robert Haas.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_materialized_view.sgml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_materialized_view.sgml b/doc/src/sgml/ref/create_materialized_view.sgml index ed3bb4d3ae5..a7e4e210eeb 100644 --- a/doc/src/sgml/ref/create_materialized_view.sgml +++ b/doc/src/sgml/ref/create_materialized_view.sgml @@ -44,6 +44,9 @@ CREATE [ UNLOGGED ] MATERIALIZED VIEW <replaceable>table_name</replaceable> <command>CREATE MATERIALIZED VIEW</command> is similar to <command>CREATE TABLE AS</>, except that it also remembers the query used to initialize the view, so that it can be refreshed later upon demand. + A materialized view has many of the same properties as a table, but there + is no support for temporary materialized views or automatic generation of + OIDs. </para> </refsect1> @@ -88,7 +91,9 @@ CREATE [ UNLOGGED ] MATERIALIZED VIEW <replaceable>table_name</replaceable> This clause specifies optional storage parameters for the new materialized view; see <xref linkend="sql-createtable-storage-parameters" endterm="sql-createtable-storage-parameters-title"> for more - information. + information. All parameters supported for <literal>CREATE + TABLE</literal> are also supported for <literal>CREATE MATERIALIZED + VIEW</literal> with the exception of <literal>OIDS</literal>. See <xref linkend="sql-createtable"> for more information. </para> </listitem> |