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 531d33c commit a2a2164
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

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

import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.jdk.CollectionConverters.asScalaBufferConverter

import org.apache.hadoop.conf.Configuration
import org.apache.hadoop.yarn.api.records.{ApplicationId, ApplicationReport, YarnApplicationState}
import org.apache.hadoop.yarn.client.api.YarnClient
Expand All @@ -27,10 +31,6 @@ import org.apache.spark.sql.connector.read.PartitionReader
import org.apache.spark.sql.sources.{EqualTo, In}
import org.apache.spark.unsafe.types.UTF8String

import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.jdk.CollectionConverters.asScalaBufferConverter

class YarnAppPartitionReader(yarnAppPartition: YarnAppPartition)
extends PartitionReader[InternalRow] with Logging {

Expand Down

0 comments on commit a2a2164

Please sign in to comment.