Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pOdtN-0006P3-3x for pgsql-hackers@arkaria.postgresql.org; Sun, 05 Feb 2023 12:13:09 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1pOdtK-0004CR-V8 for pgsql-hackers@arkaria.postgresql.org; Sun, 05 Feb 2023 12:13:06 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pOdtK-0004CH-04 for pgsql-hackers@lists.postgresql.org; Sun, 05 Feb 2023 12:13:06 +0000 Received: from new4-smtp.messagingengine.com ([66.111.4.230]) by magus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pOdtC-0003Yq-4O for pgsql-hackers@lists.postgresql.org; Sun, 05 Feb 2023 12:13:04 +0000 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailnew.nyi.internal (Postfix) with ESMTP id 664A65809AA; Sun, 5 Feb 2023 07:12:54 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Sun, 05 Feb 2023 07:12:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:cc:content-transfer-encoding :content-type:date:date:feedback-id:feedback-id:from:from :in-reply-to:in-reply-to:message-id:mime-version:reply-to:sender :subject:subject:to:to:x-me-proxy:x-me-proxy:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; t=1675599174; x=1675606374; bh=I h42K7a4GoCXiYTcONJ1PMtA08INeSW49Z98FYB10SQ=; b=ENpvLtMSmc27Vqs28 Kn8mSLjTCq6GiRbWB0VhfjgKrKqen6yGCCUDgxKxTXcG+TmVvV9Naxlrsd16so8q aFna6+NHX6kVYI4FbqKLC+ZIGeWrlWNIQMzNprFlfcke1ADmpEivMx0PRLF6kpkQ 1qjbG92OkC3etxWf+eecnXkCo4Tg/8WP9w/mBm0sTKzAnqXA2ViaAZx1lBMxEwvZ TO9sAK0JGReuAP1XKFOpwzYizY+R8z/lz5+1qaLjo82ty2o69jW89Xf4/20ClhoM wCrU126wMmi/3tEaTBf6+5SqhGG+oPHHHWFmNyiwlz1lUS/QwRCrGL/9NCDR6iu7 zaHYw== X-ME-Sender: X-ME-Received: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvhedrudeggedgfeejucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvvefukfggtggugfgjsehtke ertddttdejnecuhfhrohhmpeetlhhvrghrohcujfgvrhhrvghrrgcuoegrlhhvhhgvrhhr vgesrghlvhhhrdhnohdqihhprdhorhhgqeenucggtffrrghtthgvrhhnpeefhefgffegud etueekffduffdvheetiefhgfehhfegiefhteelhfehtedtvdegvdenucffohhmrghinhep phhoshhtghhrvghsqhhlrdhorhhgpdgvnhhtvghrphhrihhsvggusgdrtghomhdprggtth hsohhfghhorhgurdgtohhmnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehm rghilhhfrhhomheprghlvhhhvghrrhgvsegrlhhvhhdrnhhoqdhiphdrohhrgh X-ME-Proxy: Feedback-ID: ia2694551:Fastmail Received: by mail.messagingengine.com (Postfix) with ESMTPA; Sun, 5 Feb 2023 07:12:53 -0500 (EST) Received: by perhan.alvh.no-ip.org (Postfix, from userid 1000) id ADFAE9D; Sun, 5 Feb 2023 13:10:47 +0100 (CET) Date: Sun, 5 Feb 2023 13:10:47 +0100 From: Alvaro Herrera To: Tom Lane Cc: pgsql-hackers@lists.postgresql.org Subject: Re: First draft of back-branch release notes is done Message-ID: <20230205121047.hfjbdc7s36aiesbm@alvherre.pgsql> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1718789.1675452759@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On 2023-Feb-03, Tom Lane wrote: > ... at > > https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=f282b026787da69d88a35404cf62f1cc21cfbb7c > > As usual, please send corrections/comments by Sunday. Fix edge-case data corruption in shared tuplestores (Dmitry Astapov) If the final chunk of a large tuple being written out to disk was exactly 32760 bytes, it would be corrupted due to a fencepost bug. This is a hazard for parallelized plans that require a tuplestore, such as parallel hash join. The query would typically fail later with corrupted-data symptoms. I think this sounds really scary, because people are going to think that their stored data can get corrupted -- they don't necessarily know what a "shared tuplestore" is. Maybe "Avoid query failures in parallel hash joins" as headline? -- Álvaro Herrera Breisgau, Deutschland — https://www.EnterpriseDB.com/ "The Gord often wonders why people threaten never to come back after they've been told never to return" (www.actsofgord.com)