Documentation bug report for LIMIT - Mailing list pgsql-docs

From Jean-Christian Imbeault
Subject Documentation bug report for LIMIT
Date
Msg-id 3DC89D1B.2010208@netscape.net
Whole thread Raw
Responses Re: Documentation bug report for LIMIT
List pgsql-docs
In
http://www6.jp.postgresql.org/users-lounge/docs/7.2/postgres/queries-limit.html

it is stated that the syntax is:

SELECT select_list
     FROM table_expression
     [LIMIT { number | ALL }] [OFFSET number]

This following query is valid even though the syntax is wrong:

select id from members order by id limit 5, 6

If this "alternative" syntax is acceptable could you add this
alternative syntax to the docs? Else, the parser needs to throw an error?

SELECT select_list
     FROM table_expression
     [LIMIT { number | ALL }] [, [OFFSET] number]


pgsql-docs by date:

Previous
From: "Reid Thompson"
Date:
Subject: BYTEA problem - ERROR: Bad input string for type bytea
Next
From: john
Date:
Subject: ...