You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in org.jetbrains.exposed.sql Queries.kt there is fun <T:Table, E:Any> T.batchInsert(data: Iterable<E>, ignore: Boolean = false, body: BatchInsertStatement.(E)->Unit): List<ResultRow>. Is there any reason why E is bound to Any? It doesn't seem to serve any purpose.
The text was updated successfully, but these errors were encountered:
Technically speaking. If you are able to provide meaningful insert statement for null value, handling the null case should be allowed. In same manner as here is no not-null constraint for plain insert.
in org.jetbrains.exposed.sql Queries.kt there is
fun <T:Table, E:Any> T.batchInsert(data: Iterable<E>, ignore: Boolean = false, body: BatchInsertStatement.(E)->Unit): List<ResultRow>
. Is there any reason whyE
is bound toAny
? It doesn't seem to serve any purpose.The text was updated successfully, but these errors were encountered: