bulkInsertParallel method
Performs parallel bulk insert on poolId. Returns rows inserted,
or negative value on error.
Implementation
Future<int> bulkInsertParallel(
int poolId,
String table,
List<String> columns,
Uint8List dataBuffer,
int parallelism,
) async {
final r = await _sendRequest<IntResponse>(
BulkInsertParallelRequest(
_nextRequestId(),
poolId,
table,
columns,
dataBuffer,
parallelism,
),
);
return r.value;
}