Skip to content

Commit

Permalink
revert externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/ky…
Browse files Browse the repository at this point in the history
…uubi/engine/spark/schema/RowSet.scala
  • Loading branch information
cfmcgrady committed Feb 17, 2023
1 parent 6c4eb50 commit b714b3e
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ import org.apache.kyuubi.util.RowSetUtils._

object RowSet {

def toHiveString(
valueAndType: (Any, DataType),
nested: Boolean = false): String = {
def toHiveString(valueAndType: (Any, DataType), nested: Boolean = false): String = {
// compatible w/ Spark 3.1 and above
HiveResult.toHiveString(valueAndType, nested, HiveResult.getTimeFormatters)
val timeFormatters = HiveResult.getTimeFormatters
HiveResult.toHiveString(valueAndType, nested, timeFormatters)
}

def toTRowSet(
Expand Down

0 comments on commit b714b3e

Please sign in to comment.