Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pUDh5-0003EJ-SB for pgsql-jdbc-commits@arkaria.postgresql.org; Mon, 20 Feb 2023 21:27:31 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1pUDh4-0005tH-CJ for pgsql-jdbc-commits@arkaria.postgresql.org; Mon, 20 Feb 2023 21:27:30 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pUDbA-0000VQ-ED; Mon, 20 Feb 2023 21:21:24 +0000 Received: from out-21.smtp.github.com ([192.30.252.204]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pUDb3-0007WJ-GL; Mon, 20 Feb 2023 21:21:23 +0000 Received: from github.com (hubbernetes-node-8af914e.ac4-iad.github.net [10.52.119.96]) by smtp.github.com (Postfix) with ESMTPA id AD6905204B4; Mon, 20 Feb 2023 13:21:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1676928075; bh=+hxA+tUIqmrI81fPEOWq+vbCda6UF2TlwAhBJk7/h+c=; h=Date:From:To:Subject:From; b=lhccqttf28DAj02Z3iVZTDT+Dgu0RyMXHSBICjCOzzOD3Knc/Xle4e60vLxhDaexh DOMpjeyyYJ/4u7Yp3uLu5T6L44KwSWMqX+nAmjQaxWNs/Tjf67KPJfaD8ekXESeBbR XpNY670s+4gBx0rlnvh/3kQG10TID2o8nVWJCnLQ= Date: Mon, 20 Feb 2023 13:21:15 -0800 From: Dave Cramer To: pgsql-jdbc@lists.postgresql.org, pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] 05b129: Pull fixes for PR#2556 into master (#2826) Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Approved: 58GruLoMopuc X-GitHub-Recipient-Address: pgsql-jdbc@lists.postgresql.org,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: 05b129fedd866afc7fd41c6d8a266d231fbca1f4 https://github.com/pgjdbc/pgjdbc/commit/05b129fedd866afc7fd41c6d8a266d231fbca1f4 Author: Dave Cramer Date: 2023-02-20 (Mon, 20 Feb 2023) Changed paths: M pgjdbc/src/main/java/org/postgresql/core/Oid.java M pgjdbc/src/main/java/org/postgresql/jdbc/TypeInfoCache.java M pgjdbc/src/test/java/org/postgresql/core/OidValuesCorrectnessTest.java M pgjdbc/src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataCacheTest.java Log Message: ----------- Pull fixes for PR#2556 into master (#2826) * Add box to TypeInfoCache, fixes Issue #2746 (#2747) * use semi-colon delimiter for box type * fix: fix testGetSQLTypeQueryCache by searching for xid type. We used to search for box type but it is now cached (#2810) fix: OidValueCorrectnessTest BOX_ARRAY OID, by adding BOX_ARRAY to the oidTypeName map