Repository: spark Updated Branches: refs/heads/master f45efbb8a -> 7ae28d124
SPARK-3096: Include parquet hive serde by default in build A small change - we should just add this dependency. It doesn't have any recursive deps and it's needed for reading have parquet tables. Author: Patrick Wendell <[email protected]> Closes #2009 from pwendell/parquet and squashes the following commits: e411f9f [Patrick Wendell] SPARk-309: Include parquet hive serde by default in build Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7ae28d12 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7ae28d12 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7ae28d12 Branch: refs/heads/master Commit: 7ae28d1247e4756219016206c51fec1656e3917b Parents: f45efbb Author: Patrick Wendell <[email protected]> Authored: Mon Aug 18 10:00:46 2014 -0700 Committer: Michael Armbrust <[email protected]> Committed: Mon Aug 18 10:00:46 2014 -0700 ---------------------------------------------------------------------- sql/hive/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/7ae28d12/sql/hive/pom.xml ---------------------------------------------------------------------- diff --git a/sql/hive/pom.xml b/sql/hive/pom.xml index 93d00f7..30ff277 100644 --- a/sql/hive/pom.xml +++ b/sql/hive/pom.xml @@ -37,6 +37,11 @@ <dependencies> <dependency> + <groupId>com.twitter</groupId> + <artifactId>parquet-hive-bundle</artifactId> + <version>1.5.0</version> + </dependency> + <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_${scala.binary.version}</artifactId> <version>${project.version}</version> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
