merge method

Future<void> merge({
  1. required String table,
  2. required String on,
  3. required DatabaseRows records,
  4. List<String>? namespace,
  5. String? branch,
})

Implementation

Future<void> merge({
  required String table,
  required String on,
  required DatabaseRows records,
  List<String>? namespace,
  String? branch,
}) async {
  await mergeStream(table: table, on: on, chunks: Stream.fromIterable(_rowChunks(records)), namespace: namespace, branch: branch);
}