Message-ID: From: "vlsi (@vlsi)" To: "pgjdbc/pgjdbc" Date: Mon, 23 Feb 2026 11:50:17 +0000 Subject: Re: [pgjdbc/pgjdbc] PR #3939: Add RequireServerVersion annotation for tests In-Reply-To: References: List-Id: X-GitHub-Author-Login: vlsi X-GitHub-Comment-Id: 2840448961 X-GitHub-Comment-Type: review_comment X-GitHub-Commit: 615c7c027b380ef7189688c05768361c0cbf2553 X-GitHub-Issue: 3939 X-GitHub-Line: 33 X-GitHub-Path: testkit/src/main/java/org/postgresql/test/annotations/EnabledForServerVersionRange.java X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-Type: review_comment X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/3939#discussion_r2840448961 Content-Type: text/plain; charset=utf-8 (on testkit/src/main/java/org/postgresql/test/annotations/EnabledForServerVersionRange.java:33) There's no check for contradictory specs like `@EnabledForServerVersionRange(lt = "9.4", gt = "10.0")` or specifying both lt and lte simultaneously. Worth at least validating that lt/lte aren't both set, and same for gt/gte.