Skip to content

Commit 0ba478c

Browse files
Jan KaulJanKaul
authored andcommitted
update docs
1 parent 53534a5 commit 0ba478c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

iceberg-rust/src/table/manifest_list.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
676676
///
677677
/// # Example Usage
678678
/// ```ignore
679-
/// let manifest_list_location = writer.append_and_finish(
679+
/// let manifest_list_location = writer.append(
680680
/// data_files_iter,
681681
/// snapshot_id,
682682
/// object_store,
@@ -702,7 +702,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
702702

703703
/// Appends data files to a single manifest with optional filtering and finalizes the manifest list.
704704
///
705-
/// This method extends the basic `append_and_finish` functionality by providing the ability to
705+
/// This method extends the basic `append` functionality by providing the ability to
706706
/// filter data files during the append process. It creates a single manifest file containing
707707
/// the provided data files (after filtering), either by appending to an existing reusable
708708
/// manifest or creating a new one.
@@ -747,7 +747,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
747747
///
748748
/// # Example Usage
749749
/// ```ignore
750-
/// let manifest_list_location = writer.append_filtered_and_finish(
750+
/// let manifest_list_location = writer.append_filtered(
751751
/// data_files_iter,
752752
/// snapshot_id,
753753
/// Some(|entry| entry.as_ref().map(|e| e.status() == &Status::Added).unwrap_or(false)),
@@ -868,7 +868,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
868868
/// # Example Usage
869869
/// ```ignore
870870
/// let n_splits = writer.n_splits(data_files.len());
871-
/// let manifest_list_location = writer.append_split_and_finish(
871+
/// let manifest_list_location = writer.append_split(
872872
/// data_files_iter,
873873
/// snapshot_id,
874874
/// n_splits,
@@ -896,7 +896,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
896896

897897
/// Appends data files across multiple manifests with optional filtering and finalizes the manifest list.
898898
///
899-
/// This method extends the `append_multiple_and_finish` functionality by providing the ability to
899+
/// This method extends the `append_multiple` functionality by providing the ability to
900900
/// filter data files during the append and splitting process. It distributes the data files
901901
/// (after filtering) across the specified number of splits based on partition boundaries,
902902
/// optimizing for large operations that require conditional processing.
@@ -947,7 +947,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
947947
/// # Example Usage
948948
/// ```ignore
949949
/// let n_splits = writer.n_splits(data_files.len());
950-
/// let manifest_list_location = writer.append_multiple_filtered_and_finish(
950+
/// let manifest_list_location = writer.append_multiple_filtered(
951951
/// data_files_iter,
952952
/// snapshot_id,
953953
/// n_splits,

0 commit comments

Comments
 (0)