diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-23 04:49:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-23 04:49:58 +0000 |
commit | 7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe (patch) | |
tree | 21c9d56c3701e984573ecc3ff40e72c0f63d5baf /src/backend/executor/nodeLimit.c | |
parent | 4e911c847ce906094df6595700571b714d3bb537 (diff) | |
download | postgresql-7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe.tar.gz postgresql-7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe.zip |
Fix comments that were mis-wrapped, for Tom Lane.
Diffstat (limited to 'src/backend/executor/nodeLimit.c')
-rw-r--r-- | src/backend/executor/nodeLimit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeLimit.c b/src/backend/executor/nodeLimit.c index 227f58232f9..394f411ec4d 100644 --- a/src/backend/executor/nodeLimit.c +++ b/src/backend/executor/nodeLimit.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeLimit.c,v 1.5 2001/03/22 06:16:13 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeLimit.c,v 1.6 2001/03/23 04:49:53 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -79,8 +79,8 @@ ExecLimit(Limit *node) * tuple in the offset region before we can return NULL. * Otherwise we won't be correctly aligned to start going forward * again. So, although you might think we can quit when position - * = offset + 1, we have to fetch a subplan tuple first, and then - * exit when position = offset. + * equals offset + 1, we have to fetch a subplan tuple first, and + * then exit when position = offset. */ if (ScanDirectionIsForward(direction)) { |