Repository: carbondata Updated Branches: refs/heads/master b7b3cf2de -> 5da419149
[CARBONDATA-2249] Fixed bug for querying data through presto Added lz4 dependency in presto's pom.xml as it was throwing an exception when the store location for presto is local This closes #2058 Project: http://git-wip-us.apache.org/repos/asf/carbondata/repo Commit: http://git-wip-us.apache.org/repos/asf/carbondata/commit/5da41914 Tree: http://git-wip-us.apache.org/repos/asf/carbondata/tree/5da41914 Diff: http://git-wip-us.apache.org/repos/asf/carbondata/diff/5da41914 Branch: refs/heads/master Commit: 5da419149ee8700bf6c36b0fcb6894990b8bd70f Parents: b7b3cf2 Author: Geetika Gupta <[email protected]> Authored: Tue Mar 13 10:51:06 2018 +0530 Committer: chenliang613 <[email protected]> Committed: Mon Mar 26 17:40:42 2018 +0800 ---------------------------------------------------------------------- integration/presto/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/carbondata/blob/5da41914/integration/presto/pom.xml ---------------------------------------------------------------------- diff --git a/integration/presto/pom.xml b/integration/presto/pom.xml index de69df0..747ae5e 100644 --- a/integration/presto/pom.xml +++ b/integration/presto/pom.xml @@ -493,6 +493,11 @@ <artifactId>spark-catalyst_${scala.binary.version}</artifactId> <version>${spark.version}</version> </dependency> + <dependency> + <groupId>org.lz4</groupId> + <artifactId>lz4-java</artifactId> + <version>1.4.0</version> + </dependency> </dependencies>
