1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00
This commit is contained in:
Bruce Momjian 1999-03-14 20:01:14 +00:00
parent d66a44a58c
commit 5d34abc6f1

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.47 1999/03/10 12:16:09 vadim Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.48 1999/03/14 20:01:14 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -1592,8 +1592,7 @@ ExecTargetList(List *targetlist,
/* /*
* form the new result tuple (in the "normal" context) * form the new result tuple (in the "normal" context)
*/ */
newTuple = (HeapTuple) newTuple = (HeapTuple) heap_formtuple(targettype, values, null_head);
heap_formtuple(targettype, values, null_head);
/* /*
* free the nulls array if we allocated one.. * free the nulls array if we allocated one..