PostgreSQL Source Code
git master
|
#include <execnodes.h>
Data Fields | |
NodeTag | type |
uint8 | flags |
bool | resnull |
Datum | resvalue |
TupleTableSlot * | resultslot |
struct ExprEvalStep * | steps |
ExprStateEvalFunc | evalfunc |
Expr * | expr |
void * | evalfunc_private |
int | steps_len |
int | steps_alloc |
struct PlanState * | parent |
ParamListInfo | ext_params |
Datum * | innermost_caseval |
bool * | innermost_casenull |
Datum * | innermost_domainval |
bool * | innermost_domainnull |
ErrorSaveContext * | escontext |
Definition at line 78 of file execnodes.h.
ErrorSaveContext* ExprState::escontext |
Definition at line 140 of file execnodes.h.
ExprStateEvalFunc ExprState::evalfunc |
Definition at line 108 of file execnodes.h.
void* ExprState::evalfunc_private |
Definition at line 114 of file execnodes.h.
Expr* ExprState::expr |
Definition at line 111 of file execnodes.h.
Referenced by calculate_frame_offsets(), and ExecInitExprRec().
ParamListInfo ExprState::ext_params |
Definition at line 126 of file execnodes.h.
Referenced by ExecInitExprRec().
uint8 ExprState::flags |
Definition at line 82 of file execnodes.h.
bool* ExprState::innermost_casenull |
Definition at line 129 of file execnodes.h.
Referenced by array_map(), and ExecInitExprRec().
Datum* ExprState::innermost_caseval |
Definition at line 128 of file execnodes.h.
Referenced by array_map(), and ExecInitExprRec().
bool* ExprState::innermost_domainnull |
Definition at line 132 of file execnodes.h.
Datum* ExprState::innermost_domainval |
Definition at line 131 of file execnodes.h.
struct PlanState* ExprState::parent |
Definition at line 125 of file execnodes.h.
Referenced by ExecInitExprRec().
bool ExprState::resnull |
Definition at line 89 of file execnodes.h.
Referenced by ExecInitExprRec().
TupleTableSlot* ExprState::resultslot |
Definition at line 97 of file execnodes.h.
Referenced by buildSubPlanHash(), and ExecScan().
Datum ExprState::resvalue |
Definition at line 91 of file execnodes.h.
Referenced by ExecInitExprRec().
struct ExprEvalStep* ExprState::steps |
Definition at line 102 of file execnodes.h.
Referenced by ExecInitExprRec(), and ExprEvalPushStep().
int ExprState::steps_alloc |
Definition at line 122 of file execnodes.h.
Referenced by ExprEvalPushStep().
int ExprState::steps_len |
Definition at line 121 of file execnodes.h.
Referenced by ExecInitExprRec(), and ExprEvalPushStep().
NodeTag ExprState::type |
Definition at line 80 of file execnodes.h.
Referenced by ExecBuildProjectionInfo(), and ExecBuildUpdateProjection().