aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-03-20 02:07:31 +0000
committerBruce Momjian <bruce@momjian.us>1999-03-20 02:07:31 +0000
commitafac6363a62bcfe3fe297a783251d9e64369c768 (patch)
tree9fa304169c036b2f3a6819aa7b06121e80649f9e
parent7d0ab659acf5d6d410f6587f01f73cb842da2847 (diff)
downloadpostgresql-afac6363a62bcfe3fe297a783251d9e64369c768.tar.gz
postgresql-afac6363a62bcfe3fe297a783251d9e64369c768.zip
cleanup
-rw-r--r--src/backend/executor/execQual.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c
index ce515d3d79a..a021209cb1c 100644
--- a/src/backend/executor/execQual.c
+++ b/src/backend/executor/execQual.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.49 1999/03/19 22:31:39 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.50 1999/03/20 02:07:31 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -279,8 +279,8 @@ ExecEvalVar(Var *variable, ExprContext *econtext, bool *isNull)
tempSlot = makeNode(TupleTableSlot);
tempSlot->ttc_shouldFree = false;
tempSlot->ttc_descIsNew = true;
- tempSlot->ttc_tupleDescriptor = (TupleDesc) NULL,
- tempSlot->ttc_buffer = InvalidBuffer;
+ tempSlot->ttc_tupleDescriptor = (TupleDesc) NULL;
+ tempSlot->ttc_buffer = InvalidBuffer;
tempSlot->ttc_whichplan = -1;
tup = heap_copytuple(heapTuple);