HAWQ-531. Change GUC default value.
Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/4d1a8540 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/4d1a8540 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/4d1a8540 Branch: refs/heads/HAWQ-459 Commit: 4d1a85405b87145fb931a16be9e22bd40f16eca8 Parents: 96345af Author: hubertzhang <[email protected]> Authored: Wed Mar 16 11:08:57 2016 +0800 Committer: hubertzhang <[email protected]> Committed: Wed Mar 16 11:08:57 2016 +0800 ---------------------------------------------------------------------- src/backend/utils/misc/guc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/4d1a8540/src/backend/utils/misc/guc.c ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index fa58f86..ba8e747 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -6379,7 +6379,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &rm_nvseg_perquery_limit, - 1000, 1, 65535, NULL, NULL + 512, 1, 65535, NULL, NULL }, { @@ -6535,7 +6535,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &rm_rejectrequest_nseg_limit, - 2, 0, 65535, NULL, NULL + 4, 0, 65535, NULL, NULL }, {
