Missing semicolon in last fix :-}
authorJan Wieck
Sun, 7 Feb 1999 14:20:11 +0000 (14:20 +0000)
committerJan Wieck
Sun, 7 Feb 1999 14:20:11 +0000 (14:20 +0000)
Jan

src/backend/executor/execMain.c

index e4f9e0e5d4639ec0303b759d0aa25422fef394c0..d511e5f6e56907ef362fea884d356b1f5f49a3b0 100644 (file)
@@ -26,7 +26,7 @@
  *
  *
  * 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
     */
    if (QuerySnapshot == NULL)
-       estate->es_snapshot = NULL
+       estate->es_snapshot = NULL;
    else
    {
        estate->es_snapshot = (Snapshot)palloc(sizeof(SnapshotData));