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 1r0qCW-0086Hz-Oq for pgsql-hackers@arkaria.postgresql.org; Wed, 08 Nov 2023 21:35:04 +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 1r0qCV-0081dW-8E for pgsql-hackers@arkaria.postgresql.org; Wed, 08 Nov 2023 21:35:03 +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 1r0qCU-0081dO-UK for pgsql-hackers@lists.postgresql.org; Wed, 08 Nov 2023 21:35:02 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r0qCS-005QT3-Ae for pgsql-hackers@postgresql.org; Wed, 08 Nov 2023 21:35:02 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2023062407; 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=iR8ZN8fDK0qkGJjflqwuikvUwVUS9NMvfdA/2avaIPk=; b=HH7d4 RJ0y5mAKdHld+crjFLrzukG/JImZ74xRn1HRBNE282mEHtYWnk25N6BfxMWZBSlVPndDrD4/9GFWw 3zkDyviD9TVA+BpD6Bfl3tpv0ITmh9BMduTl4VC17VbitfhERaMGmlgOHYG3df/Sm70ei36mVQc+Y ldkyv+J0zFX5BLFKJDTSIMGoIw6rlHs+O+5EfeIQ05p3uiJOlQ3cZmTCvmjbyuwdht5K2WPQC73x3 q1CkVNS7N3vjwLG7/MLNpgmPReDButRtnvDh94s3F9hJFT7dSinbQ91bfMvX6lwRYxjWjnKM72jKq qWcsQOqB/U8Dj/WLP6VgwG/R6Powg==; Received: from bruce by momjian.us with local (Exim 4.96) (envelope-from ) id 1r0qCP-00Gu5U-0Z; Wed, 08 Nov 2023 16:34:57 -0500 Date: Wed, 8 Nov 2023 16:34:57 -0500 From: Bruce Momjian To: Tom Lane Cc: "Daniel Westermann (DWE)" , PostgreSQL-development Subject: Re: Wrong sentence in the README? Message-ID: References: <11916.1569169682@sss.pgh.pa.us> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Wueyqun/rx6GYpH7" Content-Disposition: inline In-Reply-To: <11916.1569169682@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --Wueyqun/rx6GYpH7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Sep 22, 2019 at 12:28:02PM -0400, Tom Lane wrote: > "Daniel Westermann (DWE)" writes: > > in the README, top level, there is this: > > > PostgreSQL has many language interfaces, many of which are listed here: > > https://www.postgresql.org/download > > > I don't think the download page lists any language interfaces or do I miss something? > > Not directly on that page, though if you drill down into the "software > catalogue" you can find them. > > Since there's already a link to that same page a bit further down in > the file, I'm inclined to just remove the quoted sentence. Maybe > add something about "and related software" to the later link. Certainly > "language interfaces" is just one small part of that. Four years later, attached patch applied to master to implement these changes. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Only you can decide what is important to you. --Wueyqun/rx6GYpH7 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="master.diff" diff --git a/README b/README index 6416a8cf3b..56d0c951a9 100644 --- a/README +++ b/README @@ -9,10 +9,6 @@ that supports an extended subset of the SQL standard, including transactions, foreign keys, subqueries, triggers, user-defined types and functions. This distribution also contains C language bindings. -PostgreSQL has many language interfaces, many of which are listed here: - - https://www.postgresql.org/download/ - See the file INSTALL for instructions on how to build and install PostgreSQL. That file also lists supported operating systems and hardware platforms and contains information regarding any other @@ -22,6 +18,6 @@ file COPYRIGHT. A comprehensive documentation set is included in this distribution; it can be read as described in the installation instructions. -The latest version of this software may be obtained at -https://www.postgresql.org/download/. For more information look at our -web site located at https://www.postgresql.org/. +The latest version of this software, and related software, may be +obtained at https://www.postgresql.org/download/. For more information +look at our web site located at https://www.postgresql.org/. --Wueyqun/rx6GYpH7--