Skip to content

Commit 71af5b9

Browse files
committed
[SPARK-37769][SQL][FOLLOWUP] Add UTF8String import in FileScanRDD.scala
### What changes were proposed in this pull request? This PR fixes the import missing. Logical conflict between apache#35068 and apache#35055. ### Why are the changes needed? To fix up the complication. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? CI should test it out in compliation. Closes apache#35245 from HyukjinKwon/SPARK-37896. Authored-by: Hyukjin Kwon <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent f29dee6 commit 71af5b9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/FileScanRDD.scala

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import org.apache.spark.sql.execution.datasources.FileFormat._
3434
import org.apache.spark.sql.execution.vectorized.ConstantColumnVector
3535
import org.apache.spark.sql.types.{LongType, StringType, StructType}
3636
import org.apache.spark.sql.vectorized.ColumnarBatch
37+
import org.apache.spark.unsafe.types.UTF8String
3738
import org.apache.spark.util.NextIterator
3839

3940
/**

0 commit comments

Comments
 (0)