diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1999-02-01 13:33:27 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1999-02-01 13:33:27 +0000 |
commit | 072be4720273e02dcea71a8f805f377a35135108 (patch) | |
tree | f8bafda963a9ba232e843bd6460236d2bc6913f5 /src/backend/executor/nodeSubplan.c | |
parent | 757f40345141bf31ea380128cbf2fd2dde4a2798 (diff) | |
download | postgresql-072be4720273e02dcea71a8f805f377a35135108.tar.gz postgresql-072be4720273e02dcea71a8f805f377a35135108.zip |
Initialize es_snapshot.
Diffstat (limited to 'src/backend/executor/nodeSubplan.c')
-rw-r--r-- | src/backend/executor/nodeSubplan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/executor/nodeSubplan.c b/src/backend/executor/nodeSubplan.c index 94abb9aae64..2da904a925a 100644 --- a/src/backend/executor/nodeSubplan.c +++ b/src/backend/executor/nodeSubplan.c @@ -121,6 +121,7 @@ ExecInitSubPlan(SubPlan *node, EState *estate, Plan *parent) ExecCreateTupleTable(ExecCountSlotsNode(node->plan) + 10); pfree(sp_estate->es_refcount); sp_estate->es_refcount = estate->es_refcount; + sp_estate->es_snapshot = estate->es_snapshot; if (!ExecInitNode(node->plan, sp_estate, NULL)) return false; |