File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/backend/replication/logical Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -890,13 +890,13 @@ ParallelApplyWorkerMain(Datum main_arg)
890
890
if (!seg )
891
891
ereport (ERROR ,
892
892
(errcode (ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE ),
893
- errmsg ("unable to map dynamic shared memory segment" )));
893
+ errmsg ("could not map dynamic shared memory segment" )));
894
894
895
895
toc = shm_toc_attach (PG_LOGICAL_APPLY_SHM_MAGIC , dsm_segment_address (seg ));
896
896
if (!toc )
897
897
ereport (ERROR ,
898
898
(errcode (ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE ),
899
- errmsg ("bad magic number in dynamic shared memory segment" )));
899
+ errmsg ("invalid magic number in dynamic shared memory segment" )));
900
900
901
901
/* Look up the shared information. */
902
902
shared = shm_toc_lookup (toc , PARALLEL_APPLY_KEY_SHARED , false);
You can’t perform that action at this time.
0 commit comments