On Thu, 9 May 2024 00:03:50 -0400
Bruce Momjian <br...@momjian.us> wrote:

> I have committed the first draft of the PG 17 release notes;  you can
> see the results here:

I propose to improve the following description in "Migration to Version 17"
section by adding CREATE INDEX and CREATE MATERIALIZED VIEW into the command 
list.

     <para>
     Change functions to use a safe <xref linkend="guc-search-path"/>
     during maintenance operations (Jeff Davis)
     <ulink url="&commit_baseurl;2af07e2f7">&sect;</ulink>
     </para>

It is suggested in the thread [1] that users could not notice the behaviour
of CREATE INDEX is changed because the explicit command name is not listed in
the release notes. So, I think it is better to add CREATE INDEX and
CREATE MATERIALIZED VIEW into the command list. 

I've attached a patch.

[1] 
https://www.postgresql.org/message-id/flat/20240926125110.67e52f4f7a388af539367213%40sraoss.co.jp#71d4b5d6c842ba038e1e4e99c110b688

> 
>       https://momjian.us/pgsql_docs/release-17.html
> 
> It will be improved until the final release.  The item count is 188,
> which is similar to recent releases:
> 
>       release-10:  189
>       release-11:  170
>       release-12:  180
>       release-13:  178
>       release-14:  220
>       release-15:  184
>       release-16:  206
>       release-17:  188
> 
> I welcome feedback.  For some reason it was an easier job than usual.
> 
> -- 
>   Bruce Momjian  <br...@momjian.us>        https://momjian.us
>   EDB                                      https://enterprisedb.com
> 
>   Only you can decide what is important to you.
> 
> 


-- 
Yugo Nagata <nag...@sraoss.co.jp>
diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml
index ad81473774..085ca6bbc6 100644
--- a/doc/src/sgml/release-17.sgml
+++ b/doc/src/sgml/release-17.sgml
@@ -136,7 +136,8 @@ Author: Jeff Davis <jda...@postgresql.org>
 
      <para>
      This prevents maintenance operations (<command>ANALYZE</command>,
-     <command>CLUSTER</command>, <command>REFRESH
+     <command>CLUSTER</command>, <command>CREATE INDEX</command>,
+     <command>CREATE MATERIALIZED VIEW</command>, <command>REFRESH
      MATERIALIZED VIEW</command>, <command>REINDEX</command>,
      or <command>VACUUM</command>) from performing unsafe access.
      Functions used by expression indexes and materialized views that

Reply via email to