bulkInsertParallel method
Performs parallel bulk insert through poolId.
Uses pool-managed parallel workers in Rust. Returns rows inserted on success, or negative value on failure.
Implementation
@override
int bulkInsertParallel(
int poolId,
String table,
List<String> columns,
Uint8List dataBuffer,
int parallelism,
) =>
_native.bulkInsertParallel(
poolId,
table,
columns,
dataBuffer,
parallelism,
);