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 1sEYZ0-0027nQ-3B for pgsql-general@arkaria.postgresql.org; Tue, 04 Jun 2024 18:07:15 +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 1sEYZ0-001cBP-5A for pgsql-general@arkaria.postgresql.org; Tue, 04 Jun 2024 18:07:14 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sEYYz-001cBH-Pr for pgsql-general@lists.postgresql.org; Tue, 04 Jun 2024 18:07:13 +0000 Received: from mout-u-204.mailbox.org ([2001:67c:2050:101:465::204]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sEYYw-002KvW-Pl for pgsql-general@postgresql.org; Tue, 04 Jun 2024 18:07:13 +0000 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-u-204.mailbox.org (Postfix) with ESMTPS id 4Vtz7t0gMSz9tcv; Tue, 4 Jun 2024 20:07:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ewie.name; s=MBO0001; t=1717524426; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=eCz6VDM/dcWAIvGuMVfKRUKOyn4TtAZStGkiUzkwNBc=; b=j017pi4lvDfq81RSw5QrOpIAV8H2Tp0+0JoAGH9dbhYbnSGg0uOpDjLmjCY0y3uIpJfu39 xcHMLpL4GM97O8zJRSpLmXAdnu5X1VmOc30PR12QkV1oLycWkqkaae+n36T1E4FBtIG404 sgQDXQw5rXE2H+ZnDKnhmowcnJHhDZCOoppauyM6ehAk7kZpedKFyNitEP/fFbfpcf4Tzo hl9wUbgZUGQDO5MdRQ8iZdRrjK84G4rJh4fUBONoLG7oTVyQWsd+GWV14cAq6qCY0eSKXi NNm53VX7OeurP4I5HaxSZ6ntDyodeguSLOV4B3yhQ7mYnffh+JMgliY/Lyj/kQ== Date: Tue, 4 Jun 2024 20:07:03 +0200 From: Erik Wienhold To: Muhammad Salahuddin Manzoor Cc: pgsql-general Subject: Re: Bugs details. Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Queue-Id: 4Vtz7t0gMSz9tcv List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On 2024-06-04 19:55 +0200, Muhammad Salahuddin Manzoor wrote: > I need to get detailed information about PG bugs and fixes. > > I can get the information about new features and Fixes in the release > document but I find only descriptions for each fix. I need detailed > information about these fixes. How can I get details about the fix. > > Suppose the release document says. > > *Fix INSERT from multiple VALUES rows into a target column that is a domain > over an array or composite type (Tom Lane)* > > I want to get more details about this fix. How can I search this. I want to > reproduce it and demonstrate the fix. For that I need detailed information. You can check the DocBook source of the release notes. Each item should have a comment about the respective Git commits, e.g., [1] for the item that you quoted. The commit messages usually link to the mailing list thread where you may find more details. [1] https://git.postgresql.org/gitweb/?p=postgresql.git;a=blob;f=doc/src/sgml/release-16.sgml;h=54860aa0e1dfb677ec16cf3672e07bfbd41d431e;hb=refs/heads/REL_16_STABLE#l130 -- Erik