mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
C comment: correct commented bytes of max_cached_tuplebufs
The comment said ~8MB, but it is actually ~64MB. Reported-by: Kuntal Ghosh Discussion: https://postgr.es/m/CAGz5QC+GGmHdnxp04B6wcLz2Zcd_HU+wCBrsPyOZP62-BJghig@mail.gmail.com Backpatch-through: 9.5-10
This commit is contained in:
parent
30e491653b
commit
b83da9e6ee
@ -157,7 +157,7 @@ static const Size max_changes_in_memory = 4096;
|
|||||||
* workloads.
|
* workloads.
|
||||||
*/
|
*/
|
||||||
static const Size max_cached_changes = 4096 * 2;
|
static const Size max_cached_changes = 4096 * 2;
|
||||||
static const Size max_cached_tuplebufs = 4096 * 2; /* ~8MB */
|
static const Size max_cached_tuplebufs = 4096 * 2; /* ~64MB */
|
||||||
static const Size max_cached_transactions = 512;
|
static const Size max_cached_transactions = 512;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user