Skip to content

Commit

Permalink
remove same logic in executeSqlWith
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindberg committed Oct 29, 2023
1 parent 186248f commit 3b2a702
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions core/src/main/scala/zio/jdbc/ZConnection.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ final class ZConnection(private[jdbc] val underlying: ZConnection.Restorable) ex
Seq.fill(iterable.iterator.size)("?").mkString(", ")
)

case array: Array[_] =>
sb.append(
Seq.fill(array.length)("?").mkString(", ")
)

case _ => sb.append("?")
}
}
Expand Down

0 comments on commit 3b2a702

Please sign in to comment.