Repository: incubator-hawq Updated Branches: refs/heads/master 29a160839 -> 7df7f96f2
HAWQ-1458. The maximum value of guc share_input_scan_wait_lockfile_timeout should be greater than the 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/7df7f96f Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/7df7f96f Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/7df7f96f Branch: refs/heads/master Commit: 7df7f96f2c07b41a481d03833e0a1e6106c27e34 Parents: 29a1608 Author: Wen Lin <[email protected]> Authored: Thu Jun 22 15:35:08 2017 +0800 Committer: Wen Lin <[email protected]> Committed: Thu Jun 22 15:35:08 2017 +0800 ---------------------------------------------------------------------- src/backend/utils/misc/guc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/7df7f96f/src/backend/utils/misc/guc.c ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 87f44c2..ac29d87 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -6693,7 +6693,7 @@ static struct config_int ConfigureNamesInt[] = NULL }, &share_input_scan_wait_lockfile_timeout, - 300000, 1, 65536, NULL, NULL + 300000, 1, INT_MAX, NULL, NULL },
