Message-ID: From: "ShenFeng312 (@ShenFeng312)" To: "pgjdbc/pgjdbc" Date: Tue, 26 Aug 2025 03:09:57 +0000 Subject: [pgjdbc/pgjdbc] issue #3784: pgjdbc can't decode numeric arrays containing special numbers like NaN List-Id: X-GitHub-Author-Id: 49786112 X-GitHub-Author-Login: ShenFeng312 X-GitHub-Issue: 3784 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: closed X-GitHub-Type: issue X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/issues/3784 Content-Type: text/plain; charset=utf-8 pgjdbc can't decode numeric arrays containing special numbers like`NaN` In fact, I know that pgjdbc uses a special double type to represent special numeric values. However, when converting to an array, it forces the use of `BigDecimal[]`. I’m wondering if we can change this behavior. I would like to use `Number[]` instead of `BigDecimal[]`. I’m not sure if this is