insert method

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