diff options
author | Jeff Davis <jdavis@postgresql.org> | 2025-01-07 14:49:18 -0800 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2025-01-07 14:49:18 -0800 |
commit | 8a96faedc408b447acd1570d2f51300bcec34959 (patch) | |
tree | db6abe9cecb33722898025a26c4fd1f537afbd73 /src/backend/executor/execGrouping.c | |
parent | 834c9e807cf12e355f06479a8b1f7a82aba77315 (diff) | |
download | postgresql-8a96faedc408b447acd1570d2f51300bcec34959.tar.gz postgresql-8a96faedc408b447acd1570d2f51300bcec34959.zip |
Remove unused TupleHashTableData->entrysize.
Discussion: https://postgr.es/m/7530bd8783b1a78d53a3c70383e38d8da0a5ffe5.camel%40j-davis.com
Diffstat (limited to 'src/backend/executor/execGrouping.c')
-rw-r--r-- | src/backend/executor/execGrouping.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/executor/execGrouping.c b/src/backend/executor/execGrouping.c index 562dde46bd5..33b124fbb0a 100644 --- a/src/backend/executor/execGrouping.c +++ b/src/backend/executor/execGrouping.c @@ -196,7 +196,6 @@ BuildTupleHashTable(PlanState *parent, hashtable->tab_collations = collations; hashtable->tablecxt = tablecxt; hashtable->tempcxt = tempcxt; - hashtable->entrysize = entrysize; hashtable->tableslot = NULL; /* will be made on first lookup */ hashtable->inputslot = NULL; hashtable->in_hash_expr = NULL; |