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 1voQc5-003lF4-1f for pgsql-hackers@arkaria.postgresql.org; Fri, 06 Feb 2026 18:31:29 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1voQc4-005990-0e for pgsql-hackers@arkaria.postgresql.org; Fri, 06 Feb 2026 18:31:28 +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.96) (envelope-from ) id 1voQc3-00598r-2v for pgsql-hackers@lists.postgresql.org; Fri, 06 Feb 2026 18:31:27 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1voQc1-00000001PEz-2OID for pgsql-hackers@lists.postgresql.org; Fri, 06 Feb 2026 18:31:27 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 616IV2s01802018; Fri, 6 Feb 2026 13:31:02 -0500 From: Tom Lane To: Andrew Dunstan cc: Thomas Munro , Jakub Wartak , Bruce Momjian , Dimitrios Apostolou , Magnus Hagander , Tomas Vondra , pgsql-hackers@lists.postgresql.org, Andres Freund , Melanie Plageman , Heikki Linnakangas , Kyotaro Horiguchi , David Rowley Subject: Re: [PING] fallocate() causes btrfs to never compress postgresql files In-reply-to: References: <4e46b377-cae1-09a8-49fa-634cfeb8bd20@gmx.net> <1762439.1770390711@sss.pgh.pa.us> Comments: In-reply-to Andrew Dunstan message dated "Fri, 06 Feb 2026 10:33:55 -0500" MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-ID: <1802016.1770402662.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Fri, 06 Feb 2026 13:31:02 -0500 Message-ID: <1802017.1770402662@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Andrew Dunstan writes: > On 2026-02-06 Fr 10:11 AM, Tom Lane wrote: >> The message is complaining that sizeof(ConfigureNamesEnum) changed, >> which it did, but I don't see how that value would be visible to >> external modules. So maybe a bug in libabigail? > I guess because of this in guc_tables.h: > extern PGDLLIMPORT struct config_generic ConfigureNames[]; Evidently, but I don't see how that provides a sizeof() value to onlookers. Just to be sure, I tried to compile a use of that, and got test.c:43:53: error: invalid application of =E2=80=98sizeof=E2=80=99 to in= complete type =E2=80=98struct config_generic[]=E2=80=99 elog(NOTICE, "sizeof(ConfigureNames) =3D %zu", sizeof(ConfigureNames)); ^ So if this isn't an outright bug, it's at least unhelpful behavior. regards, tom lane