Skip to content
Snippets Groups Projects
Commit 9ebb44f8 authored by Patrick Wendell's avatar Patrick Wendell
Browse files

[HOTFIX]: Java 6 Build Breaks

These were blocking RC1 so I fixed them manually.
parent c9fa870a
No related branches found
No related tags found
No related merge requests found
......@@ -252,20 +252,6 @@ public class UnsafeShuffleWriterSuite {
createWriter(false).stop(false);
}
@Test
public void writeEmptyIterator() throws Exception {
final UnsafeShuffleWriter<Object, Object> writer = createWriter(true);
writer.write(Collections.<Product2<Object, Object>>emptyIterator());
final Option<MapStatus> mapStatus = writer.stop(true);
assertTrue(mapStatus.isDefined());
assertTrue(mergedOutputFile.exists());
assertArrayEquals(new long[NUM_PARTITITONS], partitionSizesInMergedFile);
assertEquals(0, taskMetrics.shuffleWriteMetrics().get().shuffleRecordsWritten());
assertEquals(0, taskMetrics.shuffleWriteMetrics().get().shuffleBytesWritten());
assertEquals(0, taskMetrics.diskBytesSpilled());
assertEquals(0, taskMetrics.memoryBytesSpilled());
}
@Test
public void writeWithoutSpilling() throws Exception {
// In this example, each partition should have exactly one record:
......
......@@ -17,8 +17,9 @@
package org.apache.spark.sql.hive.orc
import java.util.{Objects, Properties}
import java.util.Properties
import com.google.common.base.Objects
import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.fs.{FileStatus, Path}
import org.apache.hadoop.hive.conf.HiveConf.ConfVars
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment