summaryrefslogtreecommitdiff
path: root/HISTORY
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-10-23 02:45:37 +0000
committerBruce Momjian <bruce@momjian.us>2001-10-23 02:45:37 +0000
commite1ce520c098955cbe2a7976a7019d0f89ecaad1c (patch)
tree4ee158d5b7309d453f33cfeee516d8e173fef3c6 /HISTORY
parent087771ae4025238af8547819b01bb699c27fa593 (diff)
downloadpostgresql-e1ce520c098955cbe2a7976a7019d0f89ecaad1c.tar.gz
Back out LIMIT #,# removal and mark it as to-be-removed in 7.3.
Diffstat (limited to 'HISTORY')
-rw-r--r--HISTORY6
1 files changed, 3 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 0716cd2d6a..10cd2f0d10 100644
--- a/HISTORY
+++ b/HISTORY
@@ -37,9 +37,9 @@ several languages.
Migration to 7.2
A dump/restore using pg_dump is required for those wishing to migrate
- data from any previous release. One significant change is that
- the SELECT ... LIMIT 10,20 syntax is no longer supported. You must
- now use LIMIT 10 OFFSET 20 to accomplish the same thing.
+ data from any previous release. The SELECT ... LIMIT 10,20 syntax will
+ be removed in 7.3. You should change your queries to use LIMIT 10
+ OFFSET 20.