GitHub user rxin opened a pull request:
https://github.com/apache/spark/pull/4030
[SPARK-5167][SQL] Move Row into sql package and make it usable for Java.
Mostly just moving stuff around. This should still be source compatible
since we type aliased Row previously in org.apache.spark.sql.Row.
Added the following APIs to Row:
```scala
def getMap[K, V](i: Int): scala.collection.Map[K, V]
def getJavaMap[K, V](i: Int): java.util.Map[K, V]
def getSeq[T](i: Int): Seq[T]
def getList[T](i: Int): java.util.List[T]
def getStruct(i: Int)
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/rxin/spark sql-row
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/spark/pull/4030.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #4030
----
commit 82b064a32a7744843cd7790c660471be79335c01
Author: Reynold Xin <[email protected]>
Date: 2015-01-14T01:17:11Z
[SPARK-5167][SQL] Move Row into sql package and make it usable for Java.
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]