forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit04bcf9e
committed
Adjust tuplestore.c not to allocate BufFiles in generation context
590b045 made it so tuplestore.c would store tuples inside ageneration.c memory context. After fixing a bug report in97651b0, itseems that it's probably best not to allocate BufFile relatedallocations in that context. Let's keep it just for tuple data.This adjusts the code to switch to the Tuplestorestate.context's parent,which is the MemoryContext that tuplestore_begin_common() was called in.It does not seem worth adding a new field in Tuplestorestate to storethis when we can access it by looking at the Tuplestorestate'scontext's parent.Discussion:https://postgr.es/m/CAApHDvqFt_CdJtSr+E9YLZb7jZAyRCy3hjQ+ktM+dcOFVq-xkg@mail.gmail.com1 parent97651b0 commit04bcf9e
1 file changed
+10
-0
lines changedLines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
799 | 799 |
| |
800 | 800 |
| |
801 | 801 |
| |
| 802 | + | |
802 | 803 |
| |
803 | 804 |
| |
804 | 805 |
| |
| |||
850 | 851 |
| |
851 | 852 |
| |
852 | 853 |
| |
| 854 | + | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + | |
| 860 | + | |
853 | 861 |
| |
854 | 862 |
| |
| 863 | + | |
| 864 | + | |
855 | 865 |
| |
856 | 866 |
| |
857 | 867 |
| |
|
0 commit comments
Comments
(0)