mirror of
https://github.com/postgres/postgres.git
synced 2025-08-31 17:02:12 +03:00
Improve SQLSTATE reporting in some replication-related code.
I started out with the goal of reporting ERRCODE_CONNECTION_FAILURE when walrcv_connect() fails, but as I looked around I realized that whoever wrote this code was of the opinion that errcodes are purely optional. That's not my understanding of our project policy. Hence, make sure that an errcode is provided in each ereport that (a) is ERROR or higher level and (b) isn't arguably an internal logic error. Also fix some very dubious existing errcode assignments. While this is not per policy, it's also largely cosmetic, since few of these cases could get reported to applications. So I don't feel a need to back-patch. Discussion: https://postgr.es/m/2189704.1623512522@sss.pgh.pa.us
This commit is contained in:
@@ -2388,7 +2388,8 @@ LogicalRepApplyLoop(XLogRecPtr last_received)
|
||||
|
||||
if (now >= timeout)
|
||||
ereport(ERROR,
|
||||
(errmsg("terminating logical replication worker due to timeout")));
|
||||
(errcode(ERRCODE_CONNECTION_FAILURE),
|
||||
errmsg("terminating logical replication worker due to timeout")));
|
||||
|
||||
/* Check to see if it's time for a ping. */
|
||||
if (!ping_sent)
|
||||
@@ -3207,7 +3208,8 @@ ApplyWorkerMain(Datum main_arg)
|
||||
MySubscription->name, &err);
|
||||
if (LogRepWorkerWalRcvConn == NULL)
|
||||
ereport(ERROR,
|
||||
(errmsg("could not connect to the publisher: %s", err)));
|
||||
(errcode(ERRCODE_CONNECTION_FAILURE),
|
||||
errmsg("could not connect to the publisher: %s", err)));
|
||||
|
||||
/*
|
||||
* We don't really use the output identify_system for anything but it
|
||||
|
Reference in New Issue
Block a user