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 95e949b [HOTFIX] fix compile error for flink module with spark 2.4
95e949b is described below
commit 95e949b4e7bd4466f435825d9565651a8e221872
Author: Zhang Zhichao <[email protected]>
AuthorDate: Wed Jan 22 23:51:17 2020 +0800
[HOTFIX] fix compile error for flink module with spark 2.4
fix compile error for flink module with spark 2.4
This closes #3591
---
integration/flink/pom.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/integration/flink/pom.xml b/integration/flink/pom.xml
index de3b5bc..9e47fd3 100644
--- a/integration/flink/pom.xml
+++ b/integration/flink/pom.xml
@@ -203,6 +203,23 @@
</dependency>
</dependencies>
</profile>
+ <profile>
+ <id>spark-2.4</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.carbondata</groupId>
+ <artifactId>carbondata-spark2</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.apache.hive</groupId>
+ <artifactId>hive-exec</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ </profile>
</profiles>
<build>