10000 Remove unused TupleHashTableData->entrysize. · postgres/postgres@8a96fae · GitHub
[go: up one dir, main page]

Skip to content

Commit 8a96fae

Browse files
committed
Remove unused TupleHashTableData->entrysize.
Discussion: https://postgr.es/m/7530bd8783b1a78d53a3c70383e38d8da0a5ffe5.camel%40j-davis.com
1 parent 834c9e8 commit 8a96fae

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/backend/executor/execGrouping.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ BuildTupleHashTable(PlanState *parent,
196196
hashtable->tab_collations = collations;
197197
hashtable->tablecxt = tablecxt;
198198
hashtable->tempcxt = tempcxt;
199-
hashtable->entrysize = entrysize;
200199
hashtable->tableslot = NULL; /* will be made on first lookup */
201200
hashtable->inputslot = NULL;
202201
hashtable->in_hash_expr = NULL;

src/include/nodes/execnodes.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,6 @@ typedef struct TupleHashTableData
835835
Oid *tab_collations; /* collations for hash and comparison */
836836
MemoryContext tablecxt; /* memory context containing table */
837837
MemoryContext tempcxt; /* context for function evaluations */
838-
Size entrysize; /* actual size to make each hash entry */
839838
TupleTableSlot *tableslot; /* slot for referencing table entries */
840839
/* The following fields are set transiently for each table search: */
841840
TupleTableSlot *inputslot; /* current input tuple's slot */

0 commit comments

Comments
 (0)
0