summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeLimit.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
|
* Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian2001-10-281-3/+3
| | | | spacing. Also adds space for one-line comments.
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-10/+8
| | | | tests pass.
* Evaluate LIMIT/OFFSET expressions with ExecEvalExprSwitchContext, notTom Lane2001-08-061-9/+11
| | | | ExecEvalExpr, to avoid possible memory leak.
* Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian2001-03-231-3/+3
|
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-50/+41
|
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-8/+10
|
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
|
* Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane2000-11-051-10/+4
| | | | | | the grammar did not allow redundant parentheses around sub-selects. Distinguish LIMIT ALL from LIMIT 0; make the latter behave as one would expect.
* Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane2000-10-261-0/+324
ExecutorRun. This allows LIMIT to work in a view. Also, LIMIT in a cursor declaration will behave in a reasonable fashion, whereas before it was overridden by the FETCH count.