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 0c0c7a8 commit 3b3d8f1Copy full SHA for 3b3d8f1
pglogical.c
@@ -396,6 +396,9 @@ _PG_init(void)
396
{
397
BackgroundWorker bgw;
398
399
+ if (!process_shared_preload_libraries_in_progress)
400
+ elog(ERROR, "pglogical is not in shared_preload_libraries");
401
+
402
DefineCustomEnumVariable("pglogical.conflict_resolution",
403
gettext_noop("Sets method used for conflict resolution for resolvable conflicts."),
404
NULL,
@@ -417,9 +420,6 @@ _PG_init(void)
417
420
if (IsBinaryUpgrade)
418
421
return;
419
422
- if (!process_shared_preload_libraries_in_progress)
- elog(ERROR, "pglogical is not in shared_preload_libraries");
-
423
/* Init workers. */
424
pglogical_worker_shmem_init();
425
0 commit comments