Re: pgindent versus struct members and typedefs
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Chao Li <li.evan.chao@gmail.com>
Cc: Nathan Bossart <nathandbossart@gmail.com>,
Rahila Syed <rahilasyed90@gmail.com>,
Robert Haas <robertmhaas@gmail.com>,
PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2025-12-02T22:51:15Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
pgindent: Fix spacing after != when member name matches typedef.
- a3e6beba60ec 19 (unreleased) landed
-
Exclude fmgrprotos.h from pgindent processing.
- c4133ec169df 14.0 cited
Chao Li <li.evan.chao@gmail.com> writes: > On Dec 3, 2025, at 06:00, Nathan Bossart <nathandbossart@gmail.com> wrote: >> I tried to fix pgindent for a few, but the code is basically impenetrable. >> I didn't find any fixes upstream [0], either. As noted above, we could >> also fix it by avoiding the naming conflicts. However, I can't imagine >> that's worth the churn, and I've already spent way too much time on this, >> so IMHO the best thing to do here is nothing. > I think that’s fine. Agreed, not worth the trouble to fool with. > Actually I see the other problem with pgindent, where if a “else” clause contains a multiple-line comment and a single statement without braces, for example: > ... > I tried to fix but failed. For that problem, a solution is to add braces to the “else” clause. In this case, I think pgindent is indirectly enforcing good style. I do not like omitting braces around anything that's more than one line; readers have to pay close attention to whether the code is doing what it was intended to. regards, tom lane