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