MCPcopy Create free account
hub / github.com/apache/paimon-rust / write_arrow

Method write_arrow

crates/paimon/src/table/table_write.rs:511–516  ·  view source on GitHub ↗

Write multiple Arrow RecordBatches.

(&mut self, batches: &[RecordBatch])

Source from the content-addressed store, hash-verified

509
510 /// Write multiple Arrow RecordBatches.
511 pub async fn write_arrow(&mut self, batches: &[RecordBatch]) -> Result<()> {
512 for batch in batches {
513 self.write_arrow_batch(batch).await?;
514 }
515 Ok(())
516 }
517
518 /// Close all writers and collect CommitMessages for use with TableCommit.
519 /// Writers are cleared after this call, allowing the TableWrite to be reused.

Callers

nothing calls this directly

Calls 1

write_arrow_batchMethod · 0.80

Tested by

no test coverage detected