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 1sXKKK-003JxC-22 for pgsql-hackers@arkaria.postgresql.org; Fri, 26 Jul 2024 12:45:39 +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 1sXKKI-00B6lw-E6 for pgsql-hackers@arkaria.postgresql.org; Fri, 26 Jul 2024 12:45:38 +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 1sXKKI-00B6ld-4Q for pgsql-hackers@lists.postgresql.org; Fri, 26 Jul 2024 12:45:38 +0000 Received: from smtp.outgoing.loopia.se ([93.188.3.37]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sXKKF-001YIP-0v for pgsql-hackers@postgresql.org; Fri, 26 Jul 2024 12:45:36 +0000 Received: from s807.loopia.se (localhost [127.0.0.1]) by s807.loopia.se (Postfix) with ESMTP id 833D72D4CF for ; Fri, 26 Jul 2024 14:45:32 +0200 (CEST) Received: from s980.loopia.se (unknown [172.22.191.6]) by s807.loopia.se (Postfix) with ESMTP id 744202D6CA; Fri, 26 Jul 2024 14:45:32 +0200 (CEST) Received: from s471.loopia.se (unknown [172.22.191.6]) by s980.loopia.se (Postfix) with ESMTP id 72C0A2201648; Fri, 26 Jul 2024 14:45:32 +0200 (CEST) X-Virus-Scanned: amavisd-new at amavis.loopia.se X-Spam-Flag: NO X-Spam-Score: -1.2 X-Spam-Level: X-Spam-Status: No, score=-1.2 tagged_above=-999 required=6.2 tests=[ALL_TRUSTED=-1, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1] autolearn=disabled Authentication-Results: s471.loopia.se (amavisd-new); dkim=pass (2048-bit key) header.d=yesql.se Received: from s981.loopia.se ([172.22.191.5]) by s471.loopia.se (s471.loopia.se [172.22.190.35]) (amavisd-new, port 10024) with UTF8LMTP id HYfjTzzjDqHe; Fri, 26 Jul 2024 14:45:32 +0200 (CEST) X-Loopia-Auth: user X-Loopia-User: daniel@yesql.se X-Loopia-Originating-IP: 89.255.232.193 Received: from smtpclient.apple (customer-89-255-232-193.stosn.net [89.255.232.193]) (Authenticated sender: daniel@yesql.se) by s981.loopia.se (Postfix) with ESMTPSA id 1416322B1769; Fri, 26 Jul 2024 14:45:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yesql.se; s=loopiadkim1707475645; t=1721997931; bh=7kUeo7SY9FFTdryXp/EUA0YRRswbDcuptijodlzGmSg=; h=Subject:From:In-Reply-To:Date:Cc:References:To; b=gpLChR0i81i40VlbQSDuHfYYuMrlXEmtqqo1tEAKE6a1HDuUY+jSDX5RA7g3TTsoc LdNOIlAXNe+R1tVNnbaHE8vv4emHbsIiCLtnTQp0Cpk93Uq8/bNFmmAGHgyHz3LKog HXL2Q713/UVJJEZfnxqfLjddRaSC2Poq0rS+SqHZ4UtxmatXmDdD339UropQf2gdUJ NckuIIqtOxdC4c+lKU0TX62wr0DRiv3YT7NCDQZHOlIlNplSR+wjBDe5s70zWjkLkN tjT/us1cDjqK7pPJ7Q8oxjUzopDrzo8Tq0ywaYWlIhUZ8qu8HIQ7y2SW86sB9Nu4Q0 yKNf13Jh7x4yQ== Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3774.600.62\)) Subject: Re: Detailed release notes From: Daniel Gustafsson In-Reply-To: Date: Fri, 26 Jul 2024 14:45:20 +0200 Cc: PostgreSQL Hackers Content-Transfer-Encoding: quoted-printable Message-Id: References: To: Marcos Pegoraro X-Mailer: Apple Mail (2.3774.600.62) List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk > On 26 Jul 2024, at 14:30, Marcos Pegoraro wrote: >=20 > I'm now using version 14 and planning to update to 17 as soon as it = comes available. Then looking carefully to release notes to see exactly = what I'll get when updated I see lots of unexplained features. Just = because release notes does not explain exactly what that change does. = And I don't have a way to get what code or messages generated that = feature. There is a way, but it's not exactly visible from reading the release = notes. > =E2=80=A2 Allow query nodes to be run in parallel in more cases = (Tom Lane) > Cool this feature, but when and what kind of query will use this ? Reading the source of the release notes will show a comment which links = to the commit. The source can be seen here: = https://github.com/postgres/postgres/blob/REL_17_STABLE/doc/src/sgml/relea= se-17.sgml ..and the comment for this item is: Allow query nodes to be run in parallel in more cases (Tom Lane) This comment tells us the relevant commit is e08d74ca1, which can be = found here: https://github.com/postgres/postgres/commit/e08d74ca1 This in turn leads to the mailinglist discussion for this specific = feature: = https://www.postgresql.org/message-id/1129530.1681317832@sss.pgh.pa.us -- Daniel Gustafsson