We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3839e5d commit 963d3f0Copy full SHA for 963d3f0
src/DbConnection.cpp
@@ -100,6 +100,8 @@ void DbConnection::cancel_query() {
100
PGcancel* cancel = PQgetCancel(pConn_);
101
if (cancel == NULL) stop("Connection error detected via PQgetCancel()");
102
103
+ LOG_DEBUG;
104
+
105
// PQcancel() actually issues the cancel command to the backend.
106
char errbuf[256];
107
if (!PQcancel(cancel, errbuf, sizeof(errbuf))) {
0 commit comments