This is an automated email from the ASF dual-hosted git repository.

jackylk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/carbondata.git


The following commit(s) were added to refs/heads/master by this push:
     new cef25ef  [CARBONDATA-3619] Fix 
NoSuchMethodError(registerCurrentOperationLog) While Creating Table
cef25ef is described below

commit cef25ef1fe4fc1a2c890393ab669def1c7a23a8d
Author: Vikram Ahuja <vikramahuja8...@gmail.com>
AuthorDate: Mon Nov 18 11:56:37 2019 +0530

    [CARBONDATA-3619] Fix NoSuchMethodError(registerCurrentOperationLog) While 
Creating Table
    
    Modification reason: ExecuteStatementOperation.java exists in both 
hive-service model and spark-hive-thriftserver model, Leading 
"NoSuchMethodError: 
org.apache.spark.sql.hive.thriftserver.SparkExecuteStatementOperation.registerCurrentOperationLog()V"
    
    Modification content: Excludes the dependence on hive-service in the 
spark-hive-thriftserver
    
    This closes #3510
---
 integration/spark-common/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/integration/spark-common/pom.xml b/integration/spark-common/pom.xml
index a904291..199ff84 100644
--- a/integration/spark-common/pom.xml
+++ b/integration/spark-common/pom.xml
@@ -48,6 +48,10 @@
           <groupId>org.apache.hive</groupId>
           <artifactId>hive-exec</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.hive</groupId>
+          <artifactId>hive-service</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Reply via email to