diff options
| author | Michael Paquier | 2019-07-22 01:01:50 +0000 |
|---|---|---|
| committer | Michael Paquier | 2019-07-22 01:01:50 +0000 |
| commit | 23bccc823d434d9dcf3c12622fe260d9235baae2 (patch) | |
| tree | a966eef34e7f33cf1ce9c729d3f423a5b5b9389d /src/include/executor/nodeAgg.h | |
| parent | e1a0f6a983068675813074847e1d0d61bd37ac0e (diff) | |
Fix inconsistencies and typos in the tree
This is numbered take 7, and addresses a set of issues with code
comments, variable names and unreferenced variables.
Author: Alexander Lakhin
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/include/executor/nodeAgg.h')
| -rw-r--r-- | src/include/executor/nodeAgg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h index 30541361301..1a8ca98a8c3 100644 --- a/src/include/executor/nodeAgg.h +++ b/src/include/executor/nodeAgg.h @@ -300,7 +300,7 @@ typedef struct AggStatePerHashData int numhashGrpCols; /* number of columns in hash table */ int largestGrpColIdx; /* largest col required for hashing */ AttrNumber *hashGrpColIdxInput; /* hash col indices in input slot */ - AttrNumber *hashGrpColIdxHash; /* indices in hashtbl tuples */ + AttrNumber *hashGrpColIdxHash; /* indices in hash table tuples */ Agg *aggnode; /* original Agg node, for numGroups etc. */ } AggStatePerHashData; |
