1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Back out LIMIT #,# removal and mark it as to-be-removed in 7.3.

This commit is contained in:
Bruce Momjian
2001-10-23 02:45:37 +00:00
parent 087771ae40
commit e1ce520c09
2 changed files with 8 additions and 4 deletions

View File

@ -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.