Skip to content

Commit f9a8bdf

Browse files
committed
typo fix.
1 parent 64f5ea0 commit f9a8bdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/sources/BucketedWriteSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ class BucketedWriteSuite extends QueryTest with SQLTestUtils with TestHiveSingle
161161
}
162162
}
163163

164-
test("write bucketed data with the overlapping blockBy and partitionBy columns") {
164+
test("write bucketed data with the overlapping bucketBy and partitionBy columns") {
165165
intercept[AnalysisException](df.write
166166
.partitionBy("i")
167167
.bucketBy(8, "i", "k")
168168
.sortBy("k")
169169
.saveAsTable("bucketed_table"))
170170
}
171171

172-
test("write bucketed data with the identical blockBy and partitionBy columns") {
172+
test("write bucketed data with the identical bucketBy and partitionBy columns") {
173173
intercept[AnalysisException](df.write
174174
.partitionBy("i")
175175
.bucketBy(8, "i")

0 commit comments

Comments
 (0)