Skip to content

Commit 2c08d07

Browse files
author
Jan Kaul
committed
update docs
1 parent a77984e commit 2c08d07

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
@@ -600,7 +600,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
600600
///
601601
/// # Example Usage
602602
/// ```ignore
603-
/// let manifest_list_location = writer.append_and_finish(
603+
/// let manifest_list_location = writer.append(
604604
/// data_files_iter,
605605
/// snapshot_id,
606606
/// object_store,
@@ -626,7 +626,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
626626

627627
/// Appends data files to a single manifest with optional filtering and finalizes the manifest list.
628628
///
629-
/// This method extends the basic `append_and_finish` functionality by providing the ability to
629+
/// This method extends the basic `append` functionality by providing the ability to
630630
/// filter data files during the append process. It creates a single manifest file containing
631631
/// the provided data files (after filtering), either by appending to an existing reusable
632632
/// manifest or creating a new one.
@@ -671,7 +671,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
671671
///
672672
/// # Example Usage
673673
/// ```ignore
674-
/// let manifest_list_location = writer.append_filtered_and_finish(
674+
/// let manifest_list_location = writer.append_filtered(
675675
/// data_files_iter,
676676
/// snapshot_id,
677677
/// Some(|entry| entry.as_ref().map(|e| e.status() == &Status::Added).unwrap_or(false)),
@@ -792,7 +792,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
792792
/// # Example Usage
793793
/// ```ignore
794794
/// let n_splits = writer.n_splits(data_files.len());
795-
/// let manifest_list_location = writer.append_split_and_finish(
795+
/// let manifest_list_location = writer.append_split(
796796
/// data_files_iter,
797797
/// snapshot_id,
798798
/// n_splits,
@@ -820,7 +820,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
820820

821821
/// Appends data files across multiple manifests with optional filtering and finalizes the manifest list.
822822
///
823-
/// This method extends the `append_multiple_and_finish` functionality by providing the ability to
823+
/// This method extends the `append_multiple` functionality by providing the ability to
824824
/// filter data files during the append and splitting process. It distributes the data files
825825
/// (after filtering) across the specified number of splits based on partition boundaries,
826826
/// optimizing for large operations that require conditional processing.
@@ -871,7 +871,7 @@ impl<'schema, 'metadata> ManifestListWriter<'schema, 'metadata> {
871871
/// # Example Usage
872872
/// ```ignore
873873
/// let n_splits = writer.n_splits(data_files.len());
874-
/// let manifest_list_location = writer.append_multiple_filtered_and_finish(
874+
/// let manifest_list_location = writer.append_multiple_filtered(
875875
/// data_files_iter,
876876
/// snapshot_id,
877877
/// n_splits,

0 commit comments

Comments
 (0)