Digging gram.y - Mailing list pgsql-hackers

From Teodor Sigaev
Subject Digging gram.y
Date
Msg-id 45237DDE.7020403@sigaev.ru
Whole thread Raw
Responses Re: Digging gram.y  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
In gram.y
Typename:   SimpleTypename opt_array_bounds                {                    $$ = $1;
$$->arrayBounds= $2;                }            | SETOF SimpleTypename opt_array_bounds                {
    $$ = $2;                    $$->arrayBounds = $3;                    $$->setof = TRUE;                }
 

Typename is a generic name of type and it used in many places in gram.c, but 
AFAIK the single place with SETOF is a function's RETURNS declaration. So there 
is many checks about SETOF.  May I eliminate SETOF from Typename and leave it 
only for RETURNS?



-- 
Teodor Sigaev                                   E-mail: teodor@sigaev.ru
  WWW: http://www.sigaev.ru/
 


pgsql-hackers by date:

Previous
From: Zdenek Kotala
Date:
Subject: Re: workaround for buggy strtod is not necessary
Next
From: Michael Meskes
Date:
Subject: Re: pgindent has been run