From 58dad7f349b3fdbadda6bead21d596a448db1950 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 14 Dec 2025 17:03:53 -0500 Subject: Update typedefs.list to match what the buildfarm currently reports. The current list from the buildfarm includes quite a few typedef names that it used to miss. The reason is a bit obscure, but it seems likely to have something to do with our recent increased use of palloc_object and palloc_array. In any case, this makes the relevant struct declarations be much more nicely formatted, so I'll take it. Install the current list and re-run pgindent to update affected code. Syncing with the current list also removes some obsolete typedef names and fixes some alphabetization errors. Discussion: https://postgr.es/m/1681301.1765742268@sss.pgh.pa.us --- src/include/nodes/execnodes.h | 2 +- src/include/nodes/pathnodes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/nodes') diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 64ff6996431..3968429f991 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -882,7 +882,7 @@ typedef struct TupleHashTableData ExprState *in_hash_expr; /* ExprState for hashing input datatype(s) */ ExprState *cur_eq_func; /* comparator for input vs. table */ ExprContext *exprcontext; /* expression context */ -} TupleHashTableData; +} TupleHashTableData; typedef tuplehash_iterator TupleHashIterator; diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h index 46a8655621d..b5ff456ef7f 100644 --- a/src/include/nodes/pathnodes.h +++ b/src/include/nodes/pathnodes.h @@ -639,7 +639,7 @@ typedef struct PartitionSchemeData /* Cached information about partition comparison functions. */ struct FmgrInfo *partsupfunc; -} PartitionSchemeData; +} PartitionSchemeData; typedef struct PartitionSchemeData *PartitionScheme; -- cgit v1.2.3