HashAggregate
Short Description
The HashAggregate node builds a hash table to group data
Detailed Description​
Unlike the GroupAggregate node, HashAggregate does not require pre-sorted input as it builds a hash table (or a number of hash tables) to group data. This node can be seen in GROUP BY
operations. HashAggregate operations can consume large amounts of memory as they build the hash table(s) and the output is in no particular order.
Additional Links​
- PostgreSQL Documentation - Using Explain
- pgAnalyze - Explain
- eTutorials - Understanding How PostgreSQL Executes a Query
Search online​
If this article doesn't have the information you need you can try searching online. Remember, you can contribute suggestions to this page.