Thread: [pgjdbc/pgjdbc] f0af53: feat: Add cancelQuery() to PGConnectionpublic int...

[pgjdbc/pgjdbc] f0af53: feat: Add cancelQuery() to PGConnectionpublic int...

From
Sehrope Sarkuni
Date:
  Branch: refs/heads/master
  Home:   https://github.com/pgjdbc/pgjdbc
  Commit: f0af538f59924fd9d692627102c94517e5f6008e
      https://github.com/pgjdbc/pgjdbc/commit/f0af538f59924fd9d692627102c94517e5f6008e
  Author: Sehrope Sarkuni <sehrope@jackdb.com>
  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.