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 fc6647b commit 3feb2f9Copy full SHA for 3feb2f9
collector.c
@@ -440,6 +440,12 @@ collector_main(Datum main_arg)
440
LockAcquire(&tag, ExclusiveLock, false, false);
441
collector_hdr->request = NO_REQUEST;
442
443
+ /*
444
+ * XXX: it is very likely that this TRY/CATCH is useless. If any
445
+ * error occurs, collector's bgworker will exit cancelling the lock.
446
+ *
447
+ * TODO: thus, consider reverting commit e6f52a7547a15.
448
+ */
449
PG_TRY();
450
{
451
if (request == HISTORY_REQUEST || request == PROFILE_REQUEST)
0 commit comments