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 1r30Ii-001m25-0X for pgsql-jdbc-commits@arkaria.postgresql.org; Tue, 14 Nov 2023 20:46:24 +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 1r30Ig-00B0xZ-28 for pgsql-jdbc-commits@arkaria.postgresql.org; Tue, 14 Nov 2023 20:46:22 +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.94.2) (envelope-from ) id 1r30If-00B0xR-QI for pgsql-jdbc-commits@lists.postgresql.org; Tue, 14 Nov 2023 20:46:21 +0000 Received: from out-24.smtp.github.com ([192.30.252.207]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r30Ic-006Rza-RY for pgsql-jdbc-commits@lists.postgresql.org; Tue, 14 Nov 2023 20:46:21 +0000 Received: from github.com (hubbernetes-node-6c75698.ac4-iad.github.net [10.52.205.67]) by smtp.github.com (Postfix) with ESMTPA id 5A4231E0AFE for ; Tue, 14 Nov 2023 12:46:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1699994777; bh=7/sEZADFOm5j/BdffB83/T8sbhYAdSy7qvHeuxMBMMY=; h=Date:From:To:Subject:From; b=jhpDecVOtvXmhivkuac4emM0ON2cHcd+FcyVKwlC7MIzMgT7EDWBPNXf5Qoy+/8K5 n9PddexsEjK162s95zezD3NMq7yp9R+L+8zyL6D5P7M0Wi6ucf2bdLuJUM7ne1cKcH JlzBzaUcV02E3AkVEWyR5FlZPx9t2cxHVKrtFlEQ= Date: Tue, 14 Nov 2023 12:46:17 -0800 From: Dave Cramer To: pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] d15e8a: Fix problem when calling a procedure returning a r... 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: d15e8acaa8b6666505b083725d6267ff15925749 https://github.com/pgjdbc/pgjdbc/commit/d15e8acaa8b6666505b083725d6267ff15925749 Author: Dave Cramer Date: 2023-11-14 (Tue, 14 Nov 2023) Changed paths: M pgjdbc/src/main/java/org/postgresql/core/v3/SimpleParameterList.java M pgjdbc/src/test/java/org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java Log Message: ----------- Fix problem when calling a procedure returning a refcursor more than 5 times (prepareThreshold) (#2988) * fix issue when calling a procedure returning a refcursor more than 5 times (prepareThreshold) Previously this would throw an exception when the return type of the procedure was changed from VOID to REFCURSOR fixes Issue #2983