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.96) (envelope-from ) id 1wZAtQ-000pUf-0p for pgsql-docs@arkaria.postgresql.org; Mon, 15 Jun 2026 17:14:36 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1wZAtP-00CodB-04 for pgsql-docs@arkaria.postgresql.org; Mon, 15 Jun 2026 17:14:35 +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.96) (envelope-from ) id 1wZAtO-00Cod3-2a for pgsql-docs@lists.postgresql.org; Mon, 15 Jun 2026 17:14:34 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1wZAtN-00000000VmY-203K for pgsql-docs@lists.postgresql.org; Mon, 15 Jun 2026 17:14:33 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.18.1/8.18.1) with ESMTP id 65FHESdY238800; Mon, 15 Jun 2026 13:14:28 -0400 From: Tom Lane To: Laurenz Albe cc: jochen.bandhauer@gmx.net, pgsql-docs@lists.postgresql.org Subject: Re: 7.2.1. The FROM Clause In-reply-to: <55a66acaf8bc6a29ed0c553c7e1bbd6639dc0484.camel@cybertec.at> References: <178125831604.1285960.8250607197280951685@wrigleys.postgresql.org> <36df7ebde5717e34d88228266c8aef21dc6e8c75.camel@cybertec.at> <118332.1781469634@sss.pgh.pa.us> <227073.1781535952@sss.pgh.pa.us> <55a66acaf8bc6a29ed0c553c7e1bbd6639dc0484.camel@cybertec.at> Comments: In-reply-to Laurenz Albe message dated "Mon, 15 Jun 2026 17:24:49 +0200" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <238798.1781543668.1@sss.pgh.pa.us> Date: Mon, 15 Jun 2026 13:14:28 -0400 Message-ID: <238799.1781543668@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Laurenz Albe writes: > On Mon, 2026-06-15 at 11:05 -0400, Tom Lane wrote: >> I can look up the version where it changed, if this seems like the way >> to go. > I did, and * became obsolete with 7.1. It's even in the release notes. Well, not really. 7.1 changed this behavior to depend on the sql_inheritance GUC. It wasn't till v10 when we removed that GUC (see e13486eba) that you could really safely assume that an undecorated table name includes child tables. So I think we should say it's obsolete since v10 not 7.1. Pushed with those changes. regards, tom lane