Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sxxem-00DV3P-6s for pgsql-hackers@arkaria.postgresql.org; Tue, 08 Oct 2024 00:00:52 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1sxxej-00HQ8j-Np for pgsql-hackers@arkaria.postgresql.org; Tue, 08 Oct 2024 00:00:49 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sxxej-00HQ8b-DR for pgsql-hackers@lists.postgresql.org; Tue, 08 Oct 2024 00:00:49 +0000 Received: from momjian.us ([72.94.173.45]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sxxeg-0031yH-NR for pgsql-hackers@postgresql.org; Tue, 08 Oct 2024 00:00:48 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2024011501; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description; bh=PEzxeRPS7QPp2BChETJ1RemniTtxJ1WNd0gHSHs2ZIc=; b=kob0L 2vuWatt0OGUYbPDL+PW5tQiJfEgP4t3lAvrbnHnmGiu6J5dwhKgNwwhaRw8B0e0dsEaLS6G2RSCOq mko+PWVrUAJo9hv+x2/GiRewLWYFj2Vji/27jdtVNBj9av6mqojCQbB9TipROaOGrK7qTm2MvolI8 mjq4qa1Gn5PMuIx2X0iRJGPHymZnRyf7WjKl+p9gBtebPKdIqqSN/O+g4z3xNnCJs2JkZeKMjpYvc TuwoXpCsE/p4QJbmuvOSWdb1XKvjYv6M9w/deLcMeOUtHPMX31niiyYfVAwgrRyucum0RAIRM1mXQ kJMxgmOEL5D8FBGW1RHvTy2BarHXg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1sxxef-007k3K-0y; Mon, 07 Oct 2024 20:00:45 -0400 Date: Mon, 7 Oct 2024 20:00:45 -0400 From: Bruce Momjian To: Yugo NAGATA Cc: PostgreSQL-development Subject: Re: First draft of PG 17 release notes Message-ID: References: <20240926141921.57d0b430fa53ac4389344847@sraoss.co.jp> <20240930142021.3776c6ebe5a35849719084fd@sraoss.co.jp> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="T1abxZ1OLE27TlU1" Content-Disposition: inline In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --T1abxZ1OLE27TlU1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Oct 7, 2024 at 07:25:11PM -0400, Bruce Momjian wrote: > > Yes. This change on CREATE INDEX was introduced by 2af07e2f7 together with > > other commands, but it was missed to be mentioned in the commit message > > although the description was added to the documentation. > > > > The change on CEATE MATERIALIZED VIEW was introduced by a separate commit > > b4da732fd, since which the REFRESH logic is used when creating a matview. > > Should we add here a link to that commit, too? > > I developed the attached patch which adds the two commands and the > commit item. Okay, updated commit after running src/tools/add_commit_links.pl. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com When a patient asks the doctor, "Am I going to die?", he means "Am I going to die soon?" --T1abxZ1OLE27TlU1 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="REL_17_STABLE_schema.diff" diff --git a/doc/src/sgml/release-17.sgml b/doc/src/sgml/release-17.sgml index ad814737745..0ea9d96a47f 100644 --- a/doc/src/sgml/release-17.sgml +++ b/doc/src/sgml/release-17.sgml @@ -125,6 +125,8 @@ @@ -132,11 +134,14 @@ Author: Jeff Davis Change functions to use a safe during maintenance operations (Jeff Davis) § + § This prevents maintenance operations (ANALYZE, - CLUSTER, REFRESH + CLUSTER, CREATE + INDEX, CREATE + MATERIALIZED VIEW, REFRESH MATERIALIZED VIEW, REINDEX, or VACUUM) from performing unsafe access. Functions used by expression indexes and materialized views that --T1abxZ1OLE27TlU1--