Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make the options function
  • Loading branch information
HyukjinKwon committed Mar 3, 2016
commit e4d4cfbc5a65ad95c4eee31ea5a2f09de7e5934a
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils {
}
}

test("SPARK-13543 Write the output as uncompressed via option") {
test("SPARK-13543 Write the output as uncompressed via option()") {
val clonedConf = new Configuration(hadoopConfiguration)
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
hadoopConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1525,7 +1525,7 @@ class JsonSuite extends QueryTest with SharedSQLContext with TestJsonData {
}
}

test("SPARK-13543 Write the output as uncompressed via option") {
test("SPARK-13543 Write the output as uncompressed via option()") {
val clonedConf = new Configuration(hadoopConfiguration)
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
hadoopConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class TextSuite extends QueryTest with SharedSQLContext {
"Known codecs are"))
}

test("SPARK-13543 Write the output as uncompressed via option") {
test("SPARK-13543 Write the output as uncompressed via option()") {
val clonedConf = new Configuration(hadoopConfiguration)
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
hadoopConfiguration
Expand Down