1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

Update comment to clarify fetch limit and LIMIT.

This commit is contained in:
Bruce Momjian
2002-04-08 22:42:18 +00:00
parent c21cb16d64
commit 45963af52f

View File

@ -27,7 +27,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.156 2002/03/31 06:26:31 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.157 2002/04/08 22:42:18 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -157,7 +157,8 @@ ExecutorStart(QueryDesc *queryDesc, EState *estate)
* except to start up/shut down the destination. Otherwise, * except to start up/shut down the destination. Otherwise,
* we retrieve up to 'count' tuples in the specified direction. * we retrieve up to 'count' tuples in the specified direction.
* *
* Note: count = 0 is interpreted as "no limit". * Note: count = 0 is interpreted as no portal limit, e.g. run to
* completion.
* *
* ---------------------------------------------------------------- * ----------------------------------------------------------------
*/ */