diff options
author | Bruce Momjian <bruce@momjian.us> | 2019-10-23 20:29:02 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2019-10-23 20:29:02 -0400 |
commit | 2930f163f6a5a8b6be62a02f6e88a404ab7fb9e2 (patch) | |
tree | 5064aa44b5e62ecf7589de4cb258afa835565593 | |
parent | 669feabfb76213046c8bffcfa9630376e770d4de (diff) | |
download | postgresql-2930f163f6a5a8b6be62a02f6e88a404ab7fb9e2.tar.gz postgresql-2930f163f6a5a8b6be62a02f6e88a404ab7fb9e2.zip |
docs: fix wording of REFRESH CONCURRENTLY manual page
Reported-by: Asim / apraveen@pivotal.io
Discussion: https://postgr.es/m/157076828181.26165.15231292023740913543@wrigleys.postgresql.org
Backpatch-through: 9.4
-rw-r--r-- | doc/src/sgml/ref/refresh_materialized_view.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/refresh_materialized_view.sgml b/doc/src/sgml/ref/refresh_materialized_view.sgml index fd06f1fda14..8ae62671ada 100644 --- a/doc/src/sgml/ref/refresh_materialized_view.sgml +++ b/doc/src/sgml/ref/refresh_materialized_view.sgml @@ -63,8 +63,8 @@ REFRESH MATERIALIZED VIEW [ CONCURRENTLY ] <replaceable class="parameter">name</ <para> This option is only allowed if there is at least one <literal>UNIQUE</literal> index on the materialized view which uses only - column names and includes all rows; that is, it must not index on any - expressions nor include a <literal>WHERE</literal> clause. + column names and includes all rows; that is, it must not be an + expression index or include a <literal>WHERE</literal> clause. </para> <para> This option may not be used when the materialized view is not already |