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 ac1e974 commit 046c8c5Copy full SHA for 046c8c5
src/backend/replication/logical/applyparallelworker.c
@@ -890,13 +890,13 @@ ParallelApplyWorkerMain(Datum main_arg)
890
if (!seg)
891
ereport(ERROR,
892
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
893
- errmsg("unable to map dynamic shared memory segment")));
+ errmsg("could not map dynamic shared memory segment")));
894
895
toc = shm_toc_attach(PG_LOGICAL_APPLY_SHM_MAGIC, dsm_segment_address(seg));
896
if (!toc)
897
898
899
- errmsg("bad magic number in dynamic shared memory segment")));
+ errmsg("invalid magic number in dynamic shared memory segment")));
900
901
/* Look up the shared information. */
902
shared = shm_toc_lookup(toc, PARALLEL_APPLY_KEY_SHARED, false);
0 commit comments