Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGekk committed Jun 17, 2020
1 parent 650a858 commit d55d69f
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -92,9 +92,9 @@ object HiveResult {

/** Formats a datum (based on the given data type) and returns the string representation. */
def toHiveString(
a: (Any, DataType),
nested: Boolean,
formatters: TimeFormatters): String = a match {
a: (Any, DataType),
nested: Boolean,
formatters: TimeFormatters): String = a match {
case (null, _) => if (nested) "null" else "NULL"
case (b, BooleanType) => b.toString
case (d: Date, DateType) => formatters.date.format(d)
Expand Down

0 comments on commit d55d69f

Please sign in to comment.