Message-ID: From: "simon-greatrix (@simon-greatrix)" To: "pgjdbc/pgjdbc" Date: Wed, 13 Aug 2025 23:00:02 +0000 Subject: [pgjdbc/pgjdbc] PR #3762: Fix: BaseDataSource.getProperty mirrors BaseDataSource.setProperty. List-Id: X-GitHub-Author-Id: 10000910 X-GitHub-Author-Login: simon-greatrix X-GitHub-Issue: 3762 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: closed X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/3762 Content-Type: text/plain; charset=utf-8 The setProperty method of BaseDataSource allows all properties to be set. The getProperty method does not allow the retrieval of: PG_HOST, PG_PORT, PG_DBNAME, USER, and PASSWORD. All properties that can be set should also be readable. Fixes: https://github.com/pgjdbc/pgjdbc/issues/3761