batchInsertSelect

suspend fun DatabaseClient<*>.batchInsertSelect(statements: Iterable<InsertSelectStatement>): Sequence<Int>(source)

Deprecated

Use `executeBatchUpdate` directly with `InsertSelectStatement`s.

Replace with

this.executeBatchUpdate(statements)

This function is not conventional and its usages are likely to degrade performance.

See also