Re: selecting from cursor - Mailing list pgsql-hackers

From Tom Lane
Subject Re: selecting from cursor
Date
Msg-id 24992.994181648@sss.pgh.pa.us
Whole thread Raw
In response to Re: selecting from cursor  (Alex Pilosov <alex@pilosoft.com>)
Responses Re: selecting from cursor
List pgsql-hackers
Alex Pilosov <alex@pilosoft.com> writes:
> On Tue, 3 Jul 2001, Tom Lane wrote:
>> So you have four (soon to be six or seven) different structs that *must*
>> have the same fields?  I don't think that's cleaner than a union ...

> Please see my diffs. Its implemented via #define to declare all common
> fields. 
> #define RTE_COMMON_FIELDS \
>     NodeTag     type; \
>     [etc]

I don't think that technique is cleaner than a union, either ;-).
The macro definition is a pain in the neck: you have to play games with
semicolon placement, most tools won't autoindent it nicely, etc etc.

But the main point is that I think NodeType = RangeTblEntry with
a separate subtype field is a better way to go than making a bunch of
different NodeType values.  When most of the fields are common, as in
this case, it's going to be true that many places only want to know
"is it a rangetable entry or not?"
        regards, tom lane


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Re: Buffer access rules, and a probable bug
Next
From: "Mikheev, Vadim"
Date:
Subject: RE: Re: Buffer access rules, and a probable bug