From 45ff049e288b0fc7d68195b25ba1a78522e7a45b Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Sat, 23 Nov 2019 13:19:20 -0300 Subject: [PATCH] Remove debugging aid This Assert(false) was not supposed to be in the committed copy. Reported by: Tom Lane Discussion: https://postgr.es/m/26476.1574525468@sss.pgh.pa.us --- src/backend/utils/error/elog.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/backend/utils/error/elog.c b/src/backend/utils/error/elog.c index 9ef4bc24727..f46653632ef 100644 --- a/src/backend/utils/error/elog.c +++ b/src/backend/utils/error/elog.c @@ -846,8 +846,6 @@ errbacktrace(void) ErrorData *edata = &errordata[errordata_stack_depth]; MemoryContext oldcontext; - Assert(false); - recursion_depth++; CHECK_STACK_DEPTH(); oldcontext = MemoryContextSwitchTo(edata->assoc_context);