Skip to content

Commit

Permalink
fix code style problem in YarnAppPartitionReader
Browse files Browse the repository at this point in the history
  • Loading branch information
naive-zhang committed Dec 20, 2024
1 parent 1b46b7b commit c150558
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@

package org.apache.kyuubi.spark.connector.yarn

import java.io.{BufferedReader, InputStreamReader}

import scala.collection.mutable.ArrayBuffer
import scala.util.matching.Regex

import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.fs.Path
import org.apache.hadoop.io.IOUtils
Expand All @@ -25,10 +30,6 @@ import org.apache.spark.sql.catalyst.expressions.GenericInternalRow
import org.apache.spark.sql.connector.read.PartitionReader
import org.apache.spark.unsafe.types.UTF8String

import java.io.{BufferedReader, InputStreamReader}
import scala.collection.mutable.ArrayBuffer
import scala.util.matching.Regex

class YarnLogPartitionReader(yarnLogPartition: YarnLogPartition)
extends PartitionReader[InternalRow] {

Expand Down

0 comments on commit c150558

Please sign in to comment.