From 6e826278f1ebd9967c0f8adda29c8960a812e344 Mon Sep 17 00:00:00 2001 From: Richard Guo Date: Mon, 13 Jan 2025 11:27:32 +0900 Subject: [PATCH] Fix pgindent damage Oversight in commit e0ece2a98. --- src/backend/executor/execGrouping.c | 2 +- src/include/nodes/execnodes.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c index 0775025396..4031049567 100644 --- a/src/backend/executor/execGrouping.c +++ b/src/backend/executor/execGrouping.c @@ -513,7 +513,7 @@ LookupTupleHashEntry_internal(TupleHashTable hashtable, TupleTableSlot *slot, else { MinimalTuple firstTuple; - size_t totalsize; /* including alignment and additionalsize */ + size_t totalsize; /* including alignment and additionalsize */ /* created new entry */ *isnew = true; diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 7d5871d6fa..28d45e0e2a 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -828,7 +828,7 @@ typedef struct TupleHashTableData Oid *tab_collations; /* collations for hash and comparison */ MemoryContext tablecxt; /* memory context containing table */ MemoryContext tempcxt; /* context for function evaluations */ - Size additionalsize; /* size of additional data */ + Size additionalsize; /* size of additional data */ TupleTableSlot *tableslot; /* slot for referencing table entries */ /* The following fields are set transiently for each table search: */ TupleTableSlot *inputslot; /* current input tuple's slot */ -- 2.30.2