pgsql: Remove ancient restriction that LIMIT/OFFSET can't contain a - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Remove ancient restriction that LIMIT/OFFSET can't contain a
Date
Msg-id 20080215171947.02359754108@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Remove ancient restriction that LIMIT/OFFSET can't contain a sub-select.
This was probably protecting some implementation limitation when it was
put in, but as far as I can tell the planner and executor have no such
assumption anymore; the case seems to work fine.  Per a gripe from
Grzegorz Jaskiewicz.

Modified Files:
--------------
    pgsql/src/backend/parser:
        parse_clause.c (r1.168 -> r1.169)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_clause.c?r1=1.168&r2=1.169)

pgsql-committers by date:

Previous
From: Michael Meskes
Date:
Subject: Re: pgsql: Changed the way symbols are defined in C in INFORMIX mode.
Next
From: Alvaro Herrera
Date:
Subject: Re: pgsql: Sync our regex code with upstream changes since last time we did