1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +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:
Bruce Momjian 2020-03-14 17:36:54 -04:00
parent 30e491653b
commit b83da9e6ee

View File

@ -157,7 +157,7 @@ static const Size max_changes_in_memory = 4096;
* workloads.
*/
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;