|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.49 1999/03/19 22:31:39 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.50 1999/03/20 02:07:31 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -279,8 +279,8 @@ ExecEvalVar(Var *variable, ExprContext *econtext, bool *isNull)
|
279 | 279 | tempSlot=makeNode(TupleTableSlot);
|
280 | 280 | tempSlot->ttc_shouldFree= false;
|
281 | 281 | tempSlot->ttc_descIsNew= true;
|
282 |
| -tempSlot->ttc_tupleDescriptor= (TupleDesc)NULL, |
283 |
| -tempSlot->ttc_buffer=InvalidBuffer; |
| 282 | +tempSlot->ttc_tupleDescriptor= (TupleDesc)NULL; |
| 283 | +tempSlot->ttc_buffer=InvalidBuffer; |
284 | 284 | tempSlot->ttc_whichplan=-1;
|
285 | 285 |
|
286 | 286 | tup=heap_copytuple(heapTuple);
|
|