You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by hu...@apache.org on 2016/09/07 01:09:49 UTC

[3/3] incubator-hawq git commit: HAWQ-1001. Fix some explanations of GUC.

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/65620be2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/65620be2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/65620be2

Branch: refs/heads/rangeracl
Commit: 65620be22f9a15b58eb4047792c9890755075a89
Parents: 7f12454
Author: hzhang2 <zh...@163.com>
Authored: Wed Sep 7 09:07:02 2016 +0800
Committer: hzhang2 <zh...@163.com>
Committed: Wed Sep 7 09:07:02 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/65620be2/src/backend/utils/misc/guc.c
----------------------------------------------------------------------
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 6d831ae..659b775 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;
@@ -4325,7 +4325,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
     },