Message-ID: From: "vlsi (@vlsi)" To: "pgjdbc/pgjdbc" Date: Mon, 16 Mar 2026 15:19:13 +0000 Subject: [pgjdbc/pgjdbc] PR #3967: test: move test table creation from @BeforeEach to @BeforeAll List-Id: X-GitHub-Author-Id: 213894 X-GitHub-Author-Login: vlsi X-GitHub-Issue: 3967 X-GitHub-Labels: building-and-testing X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/3967 Content-Type: text/plain; charset=utf-8 Tables are created once per test class instead of before every test method, reducing redundant DDL overhead. Seed data is truncated and reinserted in `@BeforeEach` where needed. Uses try-with-resources for connection handling in the new static setup/teardown methods.