Skip to content

Commit 982c4c8

Browse files
committed
[SPARK-27390][CORE][SQL][TEST] Fix package name mismatch
## What changes were proposed in this pull request? This PR aims to clean up package name mismatches. ## How was this patch tested? Pass the Jenkins. Closes apache#24300 from dongjoon-hyun/SPARK-27390. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent 23bde44 commit 982c4c8

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

core/src/test/scala/org/apache/spark/util/PeriodicRDDCheckpointerSuite.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.spark.utils
18+
package org.apache.spark.util
1919

2020
import org.apache.hadoop.fs.Path
2121

2222
import org.apache.spark.{SharedSparkContext, SparkContext, SparkFunSuite}
2323
import org.apache.spark.rdd.RDD
2424
import org.apache.spark.rdd.util.PeriodicRDDCheckpointer
2525
import org.apache.spark.storage.StorageLevel
26-
import org.apache.spark.util.Utils
2726

2827

2928
class PeriodicRDDCheckpointerSuite extends SparkFunSuite with SharedSparkContext {

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/DSLHintSuite.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.spark.sql
18+
package org.apache.spark.sql.catalyst.analysis
1919

20-
import org.apache.spark.sql.catalyst.analysis.AnalysisTest
2120
import org.apache.spark.sql.catalyst.dsl.expressions._
2221
import org.apache.spark.sql.catalyst.dsl.plans._
23-
import org.apache.spark.sql.catalyst.expressions._
2422
import org.apache.spark.sql.catalyst.plans.logical._
2523

2624
class DSLHintSuite extends AnalysisTest {

sql/core/src/test/scala/org/apache/spark/sql/execution/benchmark/DateTimeBenchmark.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.spark.sql
18+
package org.apache.spark.sql.execution.benchmark
1919

20-
import org.apache.spark.sql.execution.benchmark.SqlBasedBenchmark
2120
import org.apache.spark.sql.internal.SQLConf
2221

2322
/**

sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/orc/OrcSchemaPruningSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
package org.apache.spark.sql.execution.datasources.parquet
18+
package org.apache.spark.sql.execution.datasources.orc
1919

2020
import org.apache.spark.SparkConf
2121
import org.apache.spark.sql.execution.datasources.SchemaPruningSuite

sql/core/src/test/scala/org/apache/spark/sql/streaming/continuous/shuffle/ContinuousShuffleSuite.scala renamed to sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/continuous/shuffle/ContinuousShuffleSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import java.util.UUID
2121

2222
import scala.language.implicitConversions
2323

24-
import org.apache.spark.{HashPartitioner, Partition, TaskContext, TaskContextImpl}
24+
import org.apache.spark.{HashPartitioner, TaskContext, TaskContextImpl}
2525
import org.apache.spark.rpc.RpcEndpointRef
26-
import org.apache.spark.sql.catalyst.expressions.{GenericInternalRow, UnsafeProjection, UnsafeRow}
26+
import org.apache.spark.sql.catalyst.expressions.{GenericInternalRow, UnsafeProjection}
2727
import org.apache.spark.sql.streaming.StreamTest
2828
import org.apache.spark.sql.types.{DataType, IntegerType, StringType}
2929
import org.apache.spark.unsafe.types.UTF8String

0 commit comments

Comments
 (0)