Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jan 21, 2025
1 parent cd0f356 commit 35cdd9a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,7 @@ object QueryRunner {
case null => "NULL"
case v: WrappedArray[_] => s"[${v.map(format).mkString(",")}]"
case v: Array[Byte] => s"[${v.mkString(",")}]"
case other =>
s"${other.getClass}: ${other.toString}"
case other => other.toString
}
}

Expand Down

0 comments on commit 35cdd9a

Please sign in to comment.