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)
890890 if (!seg )
891891 ereport (ERROR ,
892892 (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" )));
894894
895895 toc = shm_toc_attach (PG_LOGICAL_APPLY_SHM_MAGIC , dsm_segment_address (seg ));
896896 if (!toc )
897897 ereport (ERROR ,
898898 (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" )));
900900
901901 /* Look up the shared information. */
902902 shared = shm_toc_lookup (toc , PARALLEL_APPLY_KEY_SHARED , false);
You can’t perform that action at this time.
0 commit comments