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.
2 parents 7afd4ac + ca07842 commit 58bf72aCopy full SHA for 58bf72a
src/pathman_workers.c
@@ -195,6 +195,9 @@ start_bgworker(const char *bgworker_name,
195
snprintf(worker.bgw_library_name, BGW_MAXLEN, "pg_pathman");
196
197
worker.bgw_flags = BGWORKER_SHMEM_ACCESS |
198
+#if defined(PGPRO_EE) && PG_VERSION_NUM >= 130000 && PG_VERSION_NUM < 140000 /* FIXME: need to remove last condition in future */
199
+ BGWORKER_CLASS_PERSISTENT |
200
+#endif
201
BGWORKER_BACKEND_DATABASE_CONNECTION;
202
worker.bgw_start_time = BgWorkerStart_RecoveryFinished;
203
worker.bgw_restart_time = BGW_NEVER_RESTART;
0 commit comments