insertTable method

Future<void> insertTable({
  1. required String table,
  2. required ArrowTable records,
  3. List<String>? namespace,
  4. 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);
}