Closed dbtsai closed 8 years ago
+@aishfenton
@@ master #70 diff @@
==========================================
Files 25 25
Lines 1763 1760 -3
Methods 1759 1756 -3
Messages 0 0
Branches 4 4
==========================================
+ Hits 1225 1232 +7
+ Misses 538 528 -10
Partials 0 0
Powered by Codecov. Last update eef177e...55a2c80
LGTM
In this PR, an unit test for Spark's dataframe's api is added. Also,
RDD
support is removed sinceRDD[Product]
doesn't work in Spark due to that class RDD is invariant in type T, and when a case class is passed in, i.e.,XYPair <: Product
we need to makeRDD[T]
asRDD[+T]
which we can not modify.