diff options
author | Tom Lane | 2016-09-15 15:23:25 +0000 |
---|---|---|
committer | Tom Lane | 2016-09-15 15:23:25 +0000 |
commit | 5472ed3e9bc23eff0b4e457fe564ac667cb69441 (patch) | |
tree | e44ddda20eacd56edd8a6cb124d63c1f5e1275ee | |
parent | 8a503526e455b981718c2d24bd1630fd5b4cf7ac (diff) |
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: <[email protected]>
-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 c72bd6190a..ce4eef950b 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 }, |