aboutsummaryrefslogtreecommitdiff
path: root/sql/core/pom.xml
diff options
context:
space:
mode:
authorHossein <hossein@databricks.com>2016-01-15 11:46:46 -0800
committerReynold Xin <rxin@databricks.com>2016-01-15 11:46:46 -0800
commit5f83c6991c95616ecbc2878f8860c69b2826f56c (patch)
tree86dc70e45f1b27b67efec9724632a108d69f2ef0 /sql/core/pom.xml
parentc5e7076da72657ea35a0aa388f8d2e6411d39280 (diff)
downloadspark-5f83c6991c95616ecbc2878f8860c69b2826f56c.tar.gz
spark-5f83c6991c95616ecbc2878f8860c69b2826f56c.tar.bz2
spark-5f83c6991c95616ecbc2878f8860c69b2826f56c.zip
[SPARK-12833][SQL] Initial import of spark-csv
CSV is the most common data format in the "small data" world. It is often the first format people want to try when they see Spark on a single node. Having to rely on a 3rd party component for this leads to poor user experience for new users. This PR merges the popular spark-csv data source package (https://github.com/databricks/spark-csv) with SparkSQL. This is a first PR to bring the functionality to spark 2.0 master. We will complete items outlines in the design document (see JIRA attachment) in follow up pull requests. Author: Hossein <hossein@databricks.com> Author: Reynold Xin <rxin@databricks.com> Closes #10766 from rxin/csv.
Diffstat (limited to 'sql/core/pom.xml')
-rw-r--r--sql/core/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/core/pom.xml b/sql/core/pom.xml
index 6db7a8a2dc..31b364f351 100644
--- a/sql/core/pom.xml
+++ b/sql/core/pom.xml
@@ -37,6 +37,12 @@
<dependencies>
<dependency>
+ <groupId>com.univocity</groupId>
+ <artifactId>univocity-parsers</artifactId>
+ <version>1.5.6</version>
+ <type>jar</type>
+ </dependency>
+ <dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_${scala.binary.version}</artifactId>
<version>${project.version}</version>