diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2025-12-14 17:03:53 -0500 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2025-12-14 17:03:53 -0500 |
| commit | 58dad7f349b3fdbadda6bead21d596a448db1950 (patch) | |
| tree | c00e7a6447137a780d79982a86fad8404dba4fa4 /src/include/utils | |
| parent | 66b2282b0c2237bccd933804da2e1dd0321ac151 (diff) | |
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
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/skipsupport.h | 2 | ||||
| -rw-r--r-- | src/include/utils/tuplesort.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/skipsupport.h b/src/include/utils/skipsupport.h index c42be001fb5..bc51847cf61 100644 --- a/src/include/utils/skipsupport.h +++ b/src/include/utils/skipsupport.h @@ -90,7 +90,7 @@ typedef struct SkipSupportData */ SkipSupportIncDec decrement; SkipSupportIncDec increment; -} SkipSupportData; +} SkipSupportData; extern SkipSupport PrepareSkipSupportFromOpclass(Oid opfamily, Oid opcintype, bool reverse); diff --git a/src/include/utils/tuplesort.h b/src/include/utils/tuplesort.h index 0bf55902aa1..63a7cc13a31 100644 --- a/src/include/utils/tuplesort.h +++ b/src/include/utils/tuplesort.h @@ -57,7 +57,7 @@ typedef struct SortCoordinateData /* Private opaque state (points to shared memory) */ Sharedsort *sharedsort; -} SortCoordinateData; +} SortCoordinateData; typedef struct SortCoordinateData *SortCoordinate; |
