diff options
author | Jeff Davis | 2025-01-07 22:32:37 +0000 |
---|---|---|
committer | Jeff Davis | 2025-01-07 22:33:21 +0000 |
commit | 834c9e807cf12e355f06479a8b1f7a82aba77315 (patch) | |
tree | 31669dba8a2dfda2165ceb1a79be40ac8be9122d | |
parent | 4a68d5008869afd819b03075d69bf102dd2f1bda (diff) |
Add missing typedefs.list entry for AggStatePerGroupData.
Discussion: https://postgr.es/m/7530bd8783b1a78d53a3c70383e38d8da0a5ffe5.camel%40j-davis.com
-rw-r--r-- | src/include/executor/nodeAgg.h | 2 | ||||
-rw-r--r-- | src/tools/pgindent/typedefs.list | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h index 6c4891bbaeb..34b82d0f5d1 100644 --- a/src/include/executor/nodeAgg.h +++ b/src/include/executor/nodeAgg.h @@ -264,7 +264,7 @@ typedef struct AggStatePerGroupData * NULL and not auto-replace it with a later input value. Only the first * non-NULL input will be auto-substituted. */ -} AggStatePerGroupData; +} AggStatePerGroupData; /* * AggStatePerPhaseData - per-grouping-set-phase state diff --git a/src/tools/pgindent/typedefs.list b/src/tools/pgindent/typedefs.list index e1c4f913f84..9f83ecf181f 100644 --- a/src/tools/pgindent/typedefs.list +++ b/src/tools/pgindent/typedefs.list @@ -47,6 +47,7 @@ AggSplit AggState AggStatePerAgg AggStatePerGroup +AggStatePerGroupData AggStatePerHash AggStatePerPhase AggStatePerTrans |