Repository: incubator-hawq Updated Branches: refs/heads/ranger [created] afd1885bc
HAWQ-1001. Fix some explanations of GUC. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/ee462d2d Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/ee462d2d Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/ee462d2d Branch: refs/heads/ranger Commit: ee462d2d0cbd3c1df2f8e42b367fc899688ca367 Parents: 4a4da0c Author: hzhang2 <[email protected]> Authored: Wed Sep 7 09:07:02 2016 +0800 Committer: hzhang2 <[email protected]> Committed: Mon Nov 7 16:35:28 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/ee462d2d/src/backend/utils/misc/guc.c ---------------------------------------------------------------------- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index b44b482..afbafcb 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -349,7 +349,6 @@ bool Debug_datumstream_write_use_small_initial_buffers = false; bool gp_temporary_files_filespace_repair = false; bool filesystem_support_truncate = true; bool gp_allow_non_uniform_partitioning_ddl = true; -bool enable_ranger = false; int explain_memory_verbosity = 0; char* memory_profiler_run_id = "none"; @@ -733,6 +732,7 @@ int hawq_rm_nvseg_for_analyze_nopart_perquery_perseg_limit; int hawq_rm_nvseg_for_analyze_part_perquery_perseg_limit; int hawq_rm_nvseg_for_analyze_nopart_perquery_limit; int hawq_rm_nvseg_for_analyze_part_perquery_limit; +bool enable_ranger = false; double optimizer_cost_threshold; double optimizer_nestloop_factor; double locality_upper_bound; @@ -4328,7 +4328,7 @@ static struct config_bool ConfigureNamesBool[] = { {"enable_ranger", PGC_POSTMASTER, CONN_AUTH_SETTINGS, - gettext_noop("support to using ranger to manage hawq privilege."), + gettext_noop("Enable Apache Ranger for HAWQ privilege management."), NULL, GUC_SUPERUSER_ONLY },
