summaryrefslogtreecommitdiff
path: root/src/backend/tcop/pquery.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/tcop/pquery.c')
-rw-r--r--src/backend/tcop/pquery.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/backend/tcop/pquery.c b/src/backend/tcop/pquery.c
index 62848d77348..248baa3f894 100644
--- a/src/backend/tcop/pquery.c
+++ b/src/backend/tcop/pquery.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.39 2000/10/26 21:37:24 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.40 2000/11/12 00:37:00 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -68,7 +68,12 @@ CreateExecutorState(void)
state->es_direction = ForwardScanDirection;
state->es_range_table = NIL;
+ state->es_result_relations = NULL;
+ state->es_num_result_relations = 0;
state->es_result_relation_info = NULL;
+
+ state->es_junkFilter = NULL;
+
state->es_into_relation_descriptor = NULL;
state->es_param_list_info = NULL;
@@ -76,8 +81,6 @@ CreateExecutorState(void)
state->es_tupleTable = NULL;
- state->es_junkFilter = NULL;
-
state->es_query_cxt = CurrentMemoryContext;
state->es_per_tuple_exprcontext = NULL;