Re: revised patch for PL/PgSQL table functions

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Neil Conway <neilc(at)samurai(dot)com>
Cc: PostgreSQL Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: revised patch for PL/PgSQL table functions
Date: 2002-08-26 20:51:40
Message-ID: 2741.1030395100@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Neil Conway <neilc(at)samurai(dot)com> writes:
> Here's another improved patch. I got the parser to accept 'RETURN
> NEXT' properly (thanks to Frank Ch. Eigler @ RH for his help),
> although the solution might not be perfect: I changed the scanner to
> accept 'return next' as a single token (allowing for a variable amount
> of whitespace between the first and second words, of course). If you
> have a better suggestion, let me know.

Consider doing it the way that the main parser converts "UNION JOIN"
into a single token --- viz, there's an outer filter that calls the
lexer an extra time to look ahead one token when necessary. Doing this
in the lexer is really quite messy if you want to do it right (eg,
deal correctly with comments between the two keywords).

> I'd like to see this patch get into 7.3beta1 --

Me too ;-). I am planning to review your PREPARE patch next, then look
at Joe's SRF stuff in general, and then this ...

regards, tom lane

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Nigel J. Andrews 2002-08-26 22:58:00 Re: [HACKERS] TODO Done. Superuser backend slot reservations
Previous Message Alvaro Herrera 2002-08-26 20:49:07 Re: [HACKERS] pg_attribute.attisinherited ?