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/eaaf9451 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/eaaf9451 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/eaaf9451 Branch: refs/heads/HAWQ-459 Commit: eaaf94514396c8f60716a78a76852017f7614808 Parents: 4d997b5 Author: hzhang2 <[email protected]> Authored: Fri Mar 18 10:16:51 2016 +0800 Committer: hzhang2 <[email protected]> Committed: Fri Mar 18 10:42:44 2016 +0800 ---------------------------------------------------------------------- src/backend/utils/misc/guc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/eaaf9451/src/backend/utils/misc/guc.c ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 3d13eb4..a6a8bee 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4516,7 +4516,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &default_hash_table_bucket_number, - 6, 1, INT_MAX, NULL, NULL + 6, 1, 10000, NULL, NULL }, { @@ -4525,7 +4525,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &hawq_rm_nvseg_for_copy_from_perquery, - 6, 1, INT_MAX, NULL, NULL + 6, 1, 10000, NULL, NULL }, { @@ -4534,7 +4534,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &hawq_rm_nvseg_for_analyze_perquery_perseg_limit, - 4, 1, INT_MAX, NULL, NULL + 4, 1, 10000, NULL, NULL }, { @@ -4543,7 +4543,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &hawq_rm_nvseg_for_analyze_perquery_limit, - 256, 1, INT_MAX, NULL, NULL + 256, 1, 10000, NULL, NULL }, { @@ -6388,7 +6388,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &rm_nvseg_perquery_limit, - 1000, 1, 65535, NULL, NULL + 512, 1, 10000, NULL, NULL }, { @@ -6398,7 +6398,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &rm_nvseg_perquery_perseg_limit, - 6, 1, 65535, NULL, NULL + 6, 1, 10000, NULL, NULL }, {
