From: Bruce Momjian Date: Sun, 23 Sep 2001 04:41:47 +0000 (+0000) Subject: Add mention of MySQL compatibility for LIMIT in HISTORY. X-Git-Tag: REL7_2_BETA1~329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fae50f873f85a1d8ec0b88dfff12d922eca2da8d;p=postgresql Add mention of MySQL compatibility for LIMIT in HISTORY. --- diff --git a/HISTORY b/HISTORY index afaab6d589..b9ef18b4f3 100644 --- a/HISTORY +++ b/HISTORY @@ -36,7 +36,8 @@ Migration to 7.1 A dump/restore using pg_dump is required for those wishing to migrate 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. + the LIMIT. Previous versions had this reversed. This change was + made for MySQL compatibility.