insert method
Future<void>
insert({
- required String table,
- required ArrowRecordBatch records,
- List<
String> ? namespace, - String? branch,
Implementation
Future<void> insert({required String table, required ArrowRecordBatch records, List<String>? namespace, String? branch}) async {
await insertStream(table: table, chunks: Stream.fromIterable([records]), namespace: namespace, branch: branch);
}