From 053835d334a6c533e3304e0171c078bc04f9514c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 7 Feb 2009 20:11:16 +0000 Subject: [PATCH] Document that LIMIT NULL is the same as no LIMIT clause. --- doc/src/sgml/queries.sgml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml index 7aaeea993c..71a33fff66 100644 --- a/doc/src/sgml/queries.sgml +++ b/doc/src/sgml/queries.sgml @@ -1,4 +1,4 @@ - + Queries @@ -1402,8 +1402,9 @@ SELECT select_list OFFSET says to skip that many rows before beginning to - return rows. OFFSET 0 is the same as - omitting the OFFSET clause. If both OFFSET + return rows. OFFSET 0 is the same as omitting the + OFFSET clause, and LIMIT NULL is the same + as omitting the LIMIT clause. If both OFFSET and LIMIT appear, then OFFSET rows are skipped before starting to count the LIMIT rows that are returned. -- 2.40.0