Repository: incubator-hawq Updated Branches: refs/heads/master 8a9a4d977 -> 4aae1a076
Revert "HAWQ-1458. The maximum value of guc share_input_scan_wait_lockfile_timeout should be greater than the default value." This reverts commit 7df7f96f2c07b41a481d03833e0a1e6106c27e34. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/a85b0ce8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/a85b0ce8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/a85b0ce8 Branch: refs/heads/master Commit: a85b0ce8adbdceb71e1ba3d37652317f680e6c0e Parents: 8a9a4d9 Author: rlei <[email protected]> Authored: Mon Jul 3 13:44:03 2017 +0800 Committer: rlei <[email protected]> Committed: Mon Jul 3 13:44:03 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/a85b0ce8/src/backend/utils/misc/guc.c ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index ac29d87..87f44c2 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, INT_MAX, NULL, NULL + 300000, 1, 65536, NULL, NULL },
