forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit4cad253
committed
Use CP_SMALL_TLIST for hash aggregate
Commit1f39bce added disk-based hash aggregation, which may spillincoming tuples to disk. It however did not request projection to makethe tuples as narrow as possible, which may mean having to spill muchmore data than necessary (increasing I/O, pushing other stuff from pagecache, etc.).This adds CP_SMALL_TLIST in places that may use hash aggregation - we dothat only for AGG_HASHED. It's unnecessary for AGG_SORTED, because thateither uses explicit Sort (which already does projection) or pre-sortedinput (which does not need spilling to disk).Author: Tomas VondraReviewed-by: Jeff DavisDiscussion:https://postgr.es/m/20200519151202.u2p2gpiawoaznsv2%40development1 parent9b60c4b commit4cad253
File tree
2 files changed
+26
-6
lines changed- contrib/postgres_fdw/expected
- src/backend/optimizer/plan
2 files changed
+26
-6
lines changedLines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2715 | 2715 |
| |
2716 | 2716 |
| |
2717 | 2717 |
| |
2718 |
| - | |
| 2718 | + | |
2719 | 2719 |
| |
2720 | 2720 |
| |
2721 | 2721 |
| |
| |||
2964 | 2964 |
| |
2965 | 2965 |
| |
2966 | 2966 |
| |
2967 |
| - | |
| 2967 | + | |
2968 | 2968 |
| |
2969 | 2969 |
| |
2970 | 2970 |
| |
|
Lines changed: 24 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2113 | 2113 |
| |
2114 | 2114 |
| |
2115 | 2115 |
| |
| 2116 | + | |
2116 | 2117 |
| |
2117 | 2118 |
| |
2118 | 2119 |
| |
2119 |
| - | |
| 2120 | + | |
| 2121 | + | |
| 2122 | + | |
| 2123 | + | |
2120 | 2124 |
| |
2121 |
| - | |
| 2125 | + | |
| 2126 | + | |
| 2127 | + | |
| 2128 | + | |
| 2129 | + | |
| 2130 | + | |
| 2131 | + | |
2122 | 2132 |
| |
2123 | 2133 |
| |
2124 | 2134 |
| |
| |||
2200 | 2210 |
| |
2201 | 2211 |
| |
2202 | 2212 |
| |
| 2213 | + | |
2203 | 2214 |
| |
2204 | 2215 |
| |
2205 | 2216 |
| |
2206 | 2217 |
| |
2207 | 2218 |
| |
2208 | 2219 |
| |
2209 | 2220 |
| |
2210 |
| - | |
| 2221 | + | |
| 2222 | + | |
| 2223 | + | |
| 2224 | + | |
2211 | 2225 |
| |
2212 |
| - | |
| 2226 | + | |
| 2227 | + | |
| 2228 | + | |
| 2229 | + | |
| 2230 | + | |
| 2231 | + | |
| 2232 | + | |
2213 | 2233 |
| |
2214 | 2234 |
| |
2215 | 2235 |
| |
|
0 commit comments
Comments
(0)