diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-09-15 11:23:25 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-09-15 11:23:32 -0400 |
commit | 72ce78162c6c4e52b7a9bb1a2de50daee0a3628e (patch) | |
tree | 029adc971ca787e9669d1da4841f9ef89bb5a885 | |
parent | bea38f34a4e601d2ea803a3a6d6b90ee0fe2d2b6 (diff) | |
download | postgresql-72ce78162c6c4e52b7a9bb1a2de50daee0a3628e.tar.gz postgresql-72ce78162c6c4e52b7a9bb1a2de50daee0a3628e.zip |
Make min_parallel_relation_size's default value platform-independent.
The documentation states that the default value is 8MB, but this was
only true at BLCKSZ = 8kB, because the default was hard-coded as 1024.
Make the code match the docs by computing the default as 8MB/BLCKSZ.
Oversight in commit 75be66464, noted pursuant to a gripe from Peter E.
Discussion: <90634e20-097a-e4fd-67d5-fb2c42f0dd71@2ndquadrant.com>
-rw-r--r-- | src/backend/utils/misc/guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 7b7352b5cb2..bc9d33f6ff1 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -2758,7 +2758,7 @@ static struct config_int ConfigureNamesInt[] = GUC_UNIT_BLOCKS, }, &min_parallel_relation_size, - 1024, 0, INT_MAX / 3, + (8 * 1024 * 1024) / BLCKSZ, 0, INT_MAX / 3, NULL, NULL, NULL }, |