Missing semicolon in last fix :-}

Jan
This commit is contained in:
Jan Wieck 1999-02-07 14:20:11 +00:00
parent 6fa3d0a7ab
commit dd4a357dc9
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.73 1999/02/07 13:54:58 wieck Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.74 1999/02/07 14:20:11 wieck Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -132,7 +132,7 @@ ExecutorStart(QueryDesc *queryDesc, EState *estate)
* Make our own private copy of the current queries snapshot data * Make our own private copy of the current queries snapshot data
*/ */
if (QuerySnapshot == NULL) if (QuerySnapshot == NULL)
estate->es_snapshot = NULL estate->es_snapshot = NULL;
else else
{ {
estate->es_snapshot = (Snapshot)palloc(sizeof(SnapshotData)); estate->es_snapshot = (Snapshot)palloc(sizeof(SnapshotData));