Commit dd4a357d authored by Jan Wieck's avatar Jan Wieck

Missing semicolon in last fix :-}

Jan
parent 6fa3d0a7
...@@ -26,7 +26,7 @@ ...@@ -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) ...@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment