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 2588695 commit 6176ab5Copy full SHA for 6176ab5
fdw.go
@@ -347,7 +347,7 @@ func goFdwAbortCallback() {
347
// DO NOT call FdwError or we will recurse
348
}
349
}()
350
- log.Printf("[TRACE] goFdwAbortCallback")
+ log.Printf("[WARN] goFdwAbortCallback")
351
if pluginHub, err := hub.GetHub(); err == nil {
352
pluginHub.Abort()
353
hub/hub.go
@@ -243,7 +243,7 @@ func (h *Hub) Close() {
243
244
// Abort shuts down currently running queries
245
func (h *Hub) Abort() {
246
- log.Printf("[TRACE] Hub Abort")
+ log.Printf("[WARN] Hub Abort")
247
// for all running iterators
248
for _, iter := range h.runningIterators {
249
// read the scan metadata from the iterator and add to our stack
0 commit comments