Author: gunther
Date: Thu Oct 30 18:07:22 2014
New Revision: 1635571

URL: http://svn.apache.org/r1635571
Log:
HIVE-8660: sql std auth: property missing from whitelist - 
hive.exec.dynamic.partition.mode (Thejas M Nair via Gunther Hagleitner)

Modified:
    
hive/branches/branch-0.14/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
    
hive/branches/branch-0.14/ql/src/test/org/apache/hadoop/hive/ql/security/authorization/plugin/sqlstd/TestSQLStdHiveAccessControllerHS2.java

Modified: 
hive/branches/branch-0.14/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
URL: 
http://svn.apache.org/viewvc/hive/branches/branch-0.14/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java?rev=1635571&r1=1635570&r2=1635571&view=diff
==============================================================================
--- 
hive/branches/branch-0.14/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
 (original)
+++ 
hive/branches/branch-0.14/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
 Thu Oct 30 18:07:22 2014
@@ -2567,6 +2567,7 @@ public class HiveConf extends Configurat
     "hive\\.auto\\..*",
     "hive\\.cbo\\..*",
     "hive\\.convert\\..*",
+    "hive\\.exec\\.dynamic\\.partition.*",
     "hive\\.exec\\..*\\.dynamic\\.partitions\\..*",
     "hive\\.exec\\.compress\\..*",
     "hive\\.exec\\.infer\\..*",

Modified: 
hive/branches/branch-0.14/ql/src/test/org/apache/hadoop/hive/ql/security/authorization/plugin/sqlstd/TestSQLStdHiveAccessControllerHS2.java
URL: 
http://svn.apache.org/viewvc/hive/branches/branch-0.14/ql/src/test/org/apache/hadoop/hive/ql/security/authorization/plugin/sqlstd/TestSQLStdHiveAccessControllerHS2.java?rev=1635571&r1=1635570&r2=1635571&view=diff
==============================================================================
--- 
hive/branches/branch-0.14/ql/src/test/org/apache/hadoop/hive/ql/security/authorization/plugin/sqlstd/TestSQLStdHiveAccessControllerHS2.java
 (original)
+++ 
hive/branches/branch-0.14/ql/src/test/org/apache/hadoop/hive/ql/security/authorization/plugin/sqlstd/TestSQLStdHiveAccessControllerHS2.java
 Thu Oct 30 18:07:22 2014
@@ -87,7 +87,8 @@ public class TestSQLStdHiveAccessControl
 
     // create list with variables that match some of the regexes
     List<String> confVarRegexList = 
Arrays.asList("hive.convert.join.bucket.mapjoin.tez",
-        "hive.optimize.index.filter.compact.maxsize", "hive.tez.dummy", 
"tez.task.dummy");
+        "hive.optimize.index.filter.compact.maxsize", "hive.tez.dummy", 
"tez.task.dummy",
+        "hive.exec.dynamic.partition", "hive.exec.dynamic.partition.mode");
 
     // combine two lists
     List<String> varList = new ArrayList<String>();


Reply via email to