[pgjdbc/pgjdbc] f0af53: feat: Add cancelQuery() to PGConnection public int...
Sehrope Sarkuni <[email protected]> Wed, 27 Nov 2019 12:05:23 -0800
| Newsgroups | gmane.comp.db.postgresql.jdbc |
|---|---|
| Message-ID | <pgjdbc/pgjdbc/push/refs/heads/master/[email protected]> |
Branch: refs/heads/master
Home: https://github.com/pgjdbc/pgjdbc
Commit: f0af538f59924fd9d692627102c94517e5f6008e
https://github.com/pgjdbc/pgjdbc/commit/f0af538f59924fd9d692627102c94517e5f6008e
Author: Sehrope Sarkuni <[email protected]>
Date: 2019-11-27 (Wed, 27 Nov 2019)
Changed paths:
M pgjdbc/src/main/java/org/postgresql/PGConnection.java
Log Message:
-----------
feat: Add cancelQuery() to PGConnection public interface (#1157)
Adds cancelQuery() to the extended public interface PGConnection to allow
for issueing of cancels directly to connections rather than having to keep
track of individual statements. The internals of the driver and the backend
server already operate at a connection level (not a statement level) and
this patch only exposes the existing cancelQuery() method publicly.