From: Bruce Momjian Date: Sun, 23 Sep 2001 03:41:49 +0000 (+0000) Subject: Mention LIMIT change in HISTORY file. X-Git-Tag: REL7_2_BETA1~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75a8d118d00552b17dadf6f43eabb28eb21f53b8;p=postgresql Mention LIMIT change in HISTORY file. --- diff --git a/HISTORY b/HISTORY index 65aa029e7e..afaab6d589 100644 --- a/HISTORY +++ b/HISTORY @@ -34,7 +34,9 @@ usage. Migration to 7.1 A dump/restore using pg_dump is required for those wishing to migrate - data from any previous release. + data from any previous release. One significant change is that + SELECT ... LIMIT 10,20 now uses the 10 as the OFFSET and the 20 as + the LIMIT. Previous versions had this reversed.