From: Bruce Momjian Date: Sat, 7 Feb 2009 20:11:16 +0000 (+0000) Subject: Document that LIMIT NULL is the same as no LIMIT clause. X-Git-Tag: REL8_4_BETA1~289 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=053835d334a6c533e3304e0171c078bc04f9514c;p=thirdparty%2Fpostgresql.git Document that LIMIT NULL is the same as no LIMIT clause. --- diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml index 7aaeea993cf..71a33fff662 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.