diff options
author | Amit Langote <amitlan@postgresql.org> | 2023-10-02 13:48:15 +0900 |
---|---|---|
committer | Amit Langote <amitlan@postgresql.org> | 2023-10-02 13:48:15 +0900 |
commit | c8ec5e0543b90372c8e6d5cc2cd3d2ff89ca0e82 (patch) | |
tree | b18c63d3a11e1f6e17e9d7d35e423d62d822ae72 /src/include/nodes/execnodes.h | |
parent | 7fbc75b26ed8ec70c729c5e7f8233896c54c900f (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.h | 7 |
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; |