Message-ID: From: "victornoel (@victornoel)" To: "pgjdbc/pgjdbc" Date: Fri, 18 Apr 2025 07:11:01 +0000 Subject: Re: [pgjdbc/pgjdbc] issue #3608: Support BigInteger[] in PgPreparedStatement#setObject(int, java.lang.Object) In-Reply-To: References: List-Id: X-GitHub-Author-Login: victornoel X-GitHub-Comment-Id: 2814736410 X-GitHub-Comment-Type: issue_comment X-GitHub-Issue: 3608 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-Type: comment X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/issues/3608#issuecomment-2814736410 Content-Type: text/plain; charset=utf-8 I started to look at it but it's not as easy to implement as `BigDecimal` because while there is `Oid.NUMERIC` that only matches `BigDecimal`, while for `BigInteger`, we would use `Oid.INT8` but it's already used for `long`/`Long`: so it's hard to reuse existing tests for example to introduce `BigIntegerObjectArraysTest`. I haven't even looked yet at the actual implementation ^^ Any advice here is welcome, but I will anyway try to continue by myself in the next weeks. Thanks!