Skip to content

Commit

Permalink
typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
gatorsmile committed Jan 25, 2016
1 parent 64f5ea0 commit f9a8bdf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ class BucketedWriteSuite extends QueryTest with SQLTestUtils with TestHiveSingle
}
}

test("write bucketed data with the overlapping blockBy and partitionBy columns") {
test("write bucketed data with the overlapping bucketBy and partitionBy columns") {
intercept[AnalysisException](df.write
.partitionBy("i")
.bucketBy(8, "i", "k")
.sortBy("k")
.saveAsTable("bucketed_table"))
}

test("write bucketed data with the identical blockBy and partitionBy columns") {
test("write bucketed data with the identical bucketBy and partitionBy columns") {
intercept[AnalysisException](df.write
.partitionBy("i")
.bucketBy(8, "i")
Expand Down

0 comments on commit f9a8bdf

Please sign in to comment.