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 1qoVTg-001WEa-BE for pgsql-jdbc-commits@arkaria.postgresql.org; Thu, 05 Oct 2023 21:01:48 +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 1qoVSg-000WAy-2E for pgsql-jdbc-commits@arkaria.postgresql.org; Thu, 05 Oct 2023 21:00:46 +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.94.2) (envelope-from ) id 1qoVSf-000WAY-Pe for pgsql-jdbc-commits@lists.postgresql.org; Thu, 05 Oct 2023 21:00:46 +0000 Received: from out-25.smtp.github.com ([192.30.252.208]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qoVSd-000CqZ-Jf for pgsql-jdbc-commits@lists.postgresql.org; Thu, 05 Oct 2023 21:00:45 +0000 Received: from github.com (hubbernetes-node-aef3691.ash1-iad.github.net [10.56.131.43]) by smtp.github.com (Postfix) with ESMTPA id 0C92B3408D5 for ; Thu, 5 Oct 2023 14:00:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1696539642; bh=hp7sVQ0GjZxYDyolr8qq52de5LtJBHPoO5A4dQ0yryU=; h=Date:From:To:Subject:From; b=ADjzdPgYWLmi11/8jzO8InmhzQ4HpZkuW2wGemkW7xSauPNkD7apjnbInt2Tvepmg tZImx1M6EGsTp38j6iH38gcxykbfyfYoeiniiFY0qRAR8CCa6Ss00jYMdc2JtKTZrw RGY4xH3P6fmrvDvfIFLUokva6hc9A2SuQjb7nIdw= Date: Thu, 05 Oct 2023 14:00:42 -0700 From: Dave Cramer To: pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] d55de0: Fix failing tests for version 16. (#2962) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Approved: 58GruLoMopuc X-GitHub-Recipient-Address: pgsql-jdbc-commits@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgjdbc/pgjdbc Commit: d55de08986f8b2fb5cc217f00d6025938d34caf3 https://github.com/pgjdbc/pgjdbc/commit/d55de08986f8b2fb5cc217f00d6025938d34caf3 Author: Dave Cramer Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M pgjdbc/src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java M pgjdbc/src/test/java/org/postgresql/test/jdbc42/DatabaseMetaDataTest.java Log Message: ----------- Fix failing tests for version 16. (#2962) * Fix failing tests for version 16. It seems that the way names are created for shadowed types has changed Instead of prepending _ to a shadowed name they now append _N where N is an integer * fix more tests