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 1vuh3K-001pJy-0G for pgsql-hackers@arkaria.postgresql.org; Tue, 24 Feb 2026 01:17:30 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vuh3I-00GE1q-2e for pgsql-hackers@arkaria.postgresql.org; Tue, 24 Feb 2026 01:17:28 +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 1vuh3I-00GE1h-1g for pgsql-hackers@lists.postgresql.org; Tue, 24 Feb 2026 01:17:28 +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 1vuh3F-00000000smh-2prE for pgsql-hackers@lists.postgresql.org; Tue, 24 Feb 2026 01:17: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 61O1HNdP3829702; Mon, 23 Feb 2026 20:17:23 -0500 From: Tom Lane To: Jacob Champion cc: Jelte Fennema-Nio , pgsql-hackers@lists.postgresql.org, Andrew Dunstan Subject: Re: pgsql: libpq: Grease the protocol by default In-reply-to: <3797860.1771893905@sss.pgh.pa.us> References: <3626145.1771885089@sss.pgh.pa.us> <3635497.1771889682@sss.pgh.pa.us> <3797860.1771893905@sss.pgh.pa.us> Comments: In-reply-to Tom Lane message dated "Mon, 23 Feb 2026 19:45:05 -0500" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <3829700.1771895843.1@sss.pgh.pa.us> Date: Mon, 23 Feb 2026 20:17:23 -0500 Message-ID: <3829701.1771895843@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk I wrote: > It's not obvious to me where the problem lies. Ah: the step that is failing is where TestUpgradeXVersion.pm is trying to make a comparison dump from the old server: # use the NEW pg_dumpall so we're comparing apples with apples. setinstenv($self, "$installdir", $save_env); system( qq{"$installdir/bin/pg_dumpall" $dump_opts -p $sport -f } . qq{"$upgrade_loc/origin-$oversion.sql" } . qq{> "$upgrade_loc/$oversion-dump1.log" 2>&1}); return if $?; So I was right to suspect that we can't fix this without modifying the buildfarm client. regards, tom lane