File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/sources Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments