1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-21 10:42:50 +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 a1ef0f373e
commit 5c3a70020a

View File

@@ -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;