diff options
author | Marc G. Fournier | 1996-07-30 07:41:38 +0000 |
---|---|---|
committer | Marc G. Fournier | 1996-07-30 07:41:38 +0000 |
commit | 519496b63e1e246908e7dfe4b1cbd3bcb3a3c6e9 (patch) | |
tree | c470efd0328a147644ef054ff1d2eab56212ebd3 | |
parent | be19feb14a0491915aee45163926c5475d17bff8 (diff) |
More cleandups from: "Kurt J. Lidl" <[email protected]>
-rw-r--r-- | src/backend/tcop/pquery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/pquery.c b/src/backend/tcop/pquery.c index cbe6c6d0ab5..4f185f2e683 100644 --- a/src/backend/tcop/pquery.c +++ b/src/backend/tcop/pquery.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.1.1.1 1996/07/09 06:22:00 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.2 1996/07/30 07:41:38 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -79,7 +79,7 @@ CreateExecutorState() * initialize the Executor State structure * ---------------- */ - state->es_direction = EXEC_FRWD; + state->es_direction = ForwardScanDirection; state->es_range_table = NIL; state->es_into_relation_descriptor = NULL; |