Skip to content

Commit

Permalink
rename interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ZENOTME committed Jan 2, 2025
1 parent 9cdd762 commit 92871af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/iceberg/src/spec/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ pub fn write_data_files_to_avro<W: Write>(
}

/// Parse data files from avro bytes.
pub fn parse_data_file_from_avro<R: Read>(
pub fn read_data_files_from_avro<R: Read>(
reader: &mut R,
schema: &Schema,
partition_type: &StructType,
Expand Down Expand Up @@ -2456,7 +2456,7 @@ mod tests {
)
.unwrap();

let actual_data_file = parse_data_file_from_avro(
let actual_data_file = read_data_files_from_avro(
&mut Cursor::new(buffer),
&schema,
&StructType::new(vec![]),
Expand Down

0 comments on commit 92871af

Please sign in to comment.