summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorAmit Langote <amitlan@postgresql.org>2023-10-02 13:48:15 +0900
committerAmit Langote <amitlan@postgresql.org>2023-10-02 13:48:15 +0900
commitc8ec5e0543b90372c8e6d5cc2cd3d2ff89ca0e82 (patch)
treeb18c63d3a11e1f6e17e9d7d35e423d62d822ae72 /src/include/nodes/execnodes.h
parent7fbc75b26ed8ec70c729c5e7f8233896c54c900f (diff)
Revert "Add soft error handling to some expression nodes"
This reverts commit 7fbc75b26ed8ec70c729c5e7f8233896c54c900f. Looks like the LLVM additions may not be totally correct.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index b9b08f0f62b..869465d6f80 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -34,7 +34,6 @@
#include "fmgr.h"
#include "lib/ilist.h"
#include "lib/pairingheap.h"
-#include "nodes/miscnodes.h"
#include "nodes/params.h"
#include "nodes/plannodes.h"
#include "nodes/tidbitmap.h"
@@ -130,12 +129,6 @@ typedef struct ExprState
Datum *innermost_domainval;
bool *innermost_domainnull;
-
- /*
- * For expression nodes that support soft errors. Should be set to NULL
- * before calling ExecInitExprRec() if the caller wants errors thrown.
- */
- ErrorSaveContext *escontext;
} ExprState;