Skip to content

Commit ed65ef0

Browse files
authored
support merge append (#29)
Co-authored-by: ZENOTME <[email protected]>
1 parent 2c50567 commit ed65ef0

File tree

5 files changed

+700
-35
lines changed

5 files changed

+700
-35
lines changed

crates/iceberg/src/spec/manifest.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,6 +1207,12 @@ impl ManifestEntry {
12071207
pub fn data_file(&self) -> &DataFile {
12081208
&self.data_file
12091209
}
1210+
1211+
/// File sequence number indicating when the file was added. Inherited when null and status is 1 (added).
1212+
#[inline]
1213+
pub fn file_sequence_number(&self) -> Option<i64> {
1214+
self.file_sequence_number
1215+
}
12101216
}
12111217

12121218
/// Used to track additions and deletions in ManifestEntry.

0 commit comments

Comments
 (0)