aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-09-23 04:41:47 +0000
committerBruce Momjian <bruce@momjian.us>2001-09-23 04:41:47 +0000
commitfae50f873f85a1d8ec0b88dfff12d922eca2da8d (patch)
treeacddc8b5eb0566765b3cc53ad55d2af489d79258
parente19a5adaf71466efccbe1be92842e209ff6099a6 (diff)
downloadpostgresql-fae50f873f85a1d8ec0b88dfff12d922eca2da8d.tar.gz
postgresql-fae50f873f85a1d8ec0b88dfff12d922eca2da8d.zip
Add mention of MySQL compatibility for LIMIT in HISTORY.
-rw-r--r--HISTORY3
1 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index afaab6d5896..b9ef18b4f36 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.