From c16239811b2bf62a913f6e14e89ee42b154df607 Mon Sep 17 00:00:00 2001 From: kommih Date: Thu, 7 Feb 2019 16:24:24 +1100 Subject: [PATCH 07/10] Doc update of create materialized view ... USING syntax CREATE MATERIALIZED VIEW has added the support of USING syntax to specify its own table access method. --- doc/src/sgml/ref/create_materialized_view.sgml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/doc/src/sgml/ref/create_materialized_view.sgml b/doc/src/sgml/ref/create_materialized_view.sgml index 7f31ab4d26..3a052ee6a4 100644 --- a/doc/src/sgml/ref/create_materialized_view.sgml +++ b/doc/src/sgml/ref/create_materialized_view.sgml @@ -23,6 +23,7 @@ PostgreSQL documentation CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] table_name [ (column_name [, ...] ) ] + [ USING method ] [ WITH ( storage_parameter [= value] [, ... ] ) ] [ TABLESPACE tablespace_name ] AS query @@ -85,6 +86,19 @@ CREATE MATERIALIZED VIEW [ IF NOT EXISTS ] table_name + + USING method + + + This clause specifies optional access method for the new materialize view; + see for more information. + If this option is not specified, then the default table access method + is chosen for the new materialized view. see + for more information. + + + + WITH ( storage_parameter [= value] [, ... ] ) -- 2.20.1.windows.1