Skip to content

Commit

Permalink
[HOTFIX] [SQL] Fix compilation for scala 2.11.
Browse files Browse the repository at this point in the history
Author: Prashant Sharma <[email protected]>

Closes #5652 from ScrapCodes/hf/compilation-fix-scala-2.11 and squashes the following commits:

819ff06 [Prashant Sharma] [HOTFIX] Fix compilation for scala 2.11.
  • Loading branch information
ScrapCodes committed Apr 23, 2015
1 parent f60bece commit a7d65d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public void testCreateDataFrameFromJavaBeans() {
Buffer<Integer> outputBuffer = (Buffer<Integer>) first.getJavaMap(2).get("hello");
Assert.assertArrayEquals(
bean.getC().get("hello"),
Ints.toArray(JavaConversions.asJavaList(outputBuffer)));
Ints.toArray(JavaConversions.bufferAsJavaList(outputBuffer)));
Seq<String> d = first.getAs(3);
Assert.assertEquals(bean.getD().size(), d.length());
for (int i = 0; i < d.length(); i++) {
Expand Down

0 comments on commit a7d65d3

Please sign in to comment.