Fix pgindent damage
authorRichard Guo <[email protected]>
Mon, 13 Jan 2025 02:27:32 +0000 (11:27 +0900)
committerRichard Guo <[email protected]>
Mon, 13 Jan 2025 02:27:32 +0000 (11:27 +0900)
Oversight in commit e0ece2a98.

src/backend/executor/execGrouping.c
src/include/nodes/execnodes.h

index 077502539633289d925d32d8a91b65b1dc6b6934..403104956753ec328b81641da6b766baa9823093 100644 (file)
@@ -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;
index 7d5871d6fac7a4a0a21098b9279ed10b7039c013..28d45e0e2aadd693917ee5be557c39783f3b6e64 100644 (file)
@@ -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 */