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

Method with_data_files

crates/paimon/src/table/source.rs:604–607  ·  view source on GitHub ↗
(mut self, data_files: Vec<DataFileMeta>)

Source from the content-addressed store, hash-verified

602 self
603 }
604 pub fn with_data_files(mut self, data_files: Vec<DataFileMeta>) -> Self {
605 self.data_files = Some(data_files);
606 self
607 }
608
609 /// Sets deletion files; length must match data_files. Use `None` at index i when data_files[i] has no deletion file.
610 pub fn with_data_deletion_files(

Calls

no outgoing calls