aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorDavies Liu <davies@databricks.com>2015-05-19 14:23:28 -0700
committerReynold Xin <rxin@databricks.com>2015-05-19 14:23:28 -0700
commit4de74d2602f6577c3c8458aa85377e89c19724ca (patch)
treef265842faf3e23527646f92b5efb5787042c79da /core
parentc12dff9b82e4869f866a9b96ce0bf05503dd7dda (diff)
downloadspark-4de74d2602f6577c3c8458aa85377e89c19724ca.tar.gz
spark-4de74d2602f6577c3c8458aa85377e89c19724ca.tar.bz2
spark-4de74d2602f6577c3c8458aa85377e89c19724ca.zip
[SPARK-7738] [SQL] [PySpark] add reader and writer API in Python
cc rxin, please take a quick look, I'm working on tests. Author: Davies Liu <davies@databricks.com> Closes #6238 from davies/readwrite and squashes the following commits: c7200eb [Davies Liu] update tests 9cbf01b [Davies Liu] Merge branch 'master' of github.com:apache/spark into readwrite f0c5a04 [Davies Liu] use sqlContext.read.load 5f68bc8 [Davies Liu] update tests 6437e9a [Davies Liu] Merge branch 'master' of github.com:apache/spark into readwrite bcc6668 [Davies Liu] add reader amd writer API in Python
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/org/apache/spark/api/python/PythonUtils.scala11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/src/main/scala/org/apache/spark/api/python/PythonUtils.scala b/core/src/main/scala/org/apache/spark/api/python/PythonUtils.scala
index efb6b93cfc..90dacaeb93 100644
--- a/core/src/main/scala/org/apache/spark/api/python/PythonUtils.scala
+++ b/core/src/main/scala/org/apache/spark/api/python/PythonUtils.scala
@@ -50,8 +50,15 @@ private[spark] object PythonUtils {
/**
* Convert list of T into seq of T (for calling API with varargs)
*/
- def toSeq[T](cols: JList[T]): Seq[T] = {
- cols.toList.toSeq
+ def toSeq[T](vs: JList[T]): Seq[T] = {
+ vs.toList.toSeq
+ }
+
+ /**
+ * Convert list of T into array of T (for calling API with array)
+ */
+ def toArray[T](vs: JList[T]): Array[T] = {
+ vs.toArray().asInstanceOf[Array[T]]
}
/**