From 34dffa0224bd34e0fa27b464f1821c9c43f07703 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 11 Aug 2022 14:12:11 -0400 Subject: [PATCH] Fix non-specific error message. "something has gone wrong" is not helpful. Make this elog() consistent with the other one in the same function. Discussion: http://postgr.es/m/CA+Tgmoa_AZ2jUWSA_noiqOqnxBaWDR+t3bHjSygZi6+wqDBCXQ@mail.gmail.com --- src/backend/postmaster/auxprocess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/postmaster/auxprocess.c b/src/backend/postmaster/auxprocess.c index 39ac4490db1..7765d1c83dd 100644 --- a/src/backend/postmaster/auxprocess.c +++ b/src/backend/postmaster/auxprocess.c @@ -81,7 +81,7 @@ AuxiliaryProcessMain(AuxProcType auxtype) MyBackendType = B_WAL_RECEIVER; break; default: - elog(ERROR, "something has gone wrong"); + elog(PANIC, "unrecognized process type: %d", (int) MyAuxProcType); MyBackendType = B_INVALID; }