Remove debugging aid
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 23 Nov 2019 16:19:20 +0000 (13:19 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 23 Nov 2019 16:19:20 +0000 (13:19 -0300)
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

index 9ef4bc24727fbacab2ea8b62b9b38236b94eed3b..f46653632ef331b45c4f8b8f7dd7df7cbeeee0cb 100644 (file)
@@ -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);