Re: pgindent weirdness - Mailing list pgsql-hackers

From Tom Lane
Subject Re: pgindent weirdness
Date
Msg-id 27646.1303314228@sss.pgh.pa.us
Whole thread Raw
In response to Re: pgindent weirdness  (Andrew Dunstan <andrew@dunslane.net>)
Responses Re: pgindent weirdness  (Bruce Momjian <bruce@momjian.us>)
Re: pgindent weirdness  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> On 04/20/2011 05:48 AM, Bruce Momjian wrote:
>> BulkInsertStateData is not listed in the typedef list supplied by
>> Andrew; see src/tools/pgindent/typedefs.list.  CC'ing him.  This might
>> be because the typdef is listed in two files:

> It's tagged as a structure type by objdump, but not as a typedef:

Hmm.  hio.h clearly declares it as both, but many object files probably
include only heapam.h, which exposes only the struct name.  I'm guessing
that you are merging the results from objdump'ing different files in a
way that fails to consider the possibility of some files knowing more
versions of a symbol than others.

Now having said that, there seems to be a pgindent bug here too, in that
it's throwing a space into

Buffer
RelationGetBufferForTuple(Relation relation, Size len,                         Buffer otherBuffer, int options,
               struct BulkInsertStateData * bistate)
 

Whether BulkInsertStateData is flagged as a typedef or not, surely it
ought to understand that "struct BulkInsertStateData" is a type name.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Andrew Dunstan
Date:
Subject: Re: pgindent weirdness
Next
From: Greg Stark
Date:
Subject: Re: REINDEX vs broken HOT chains, redux