pub async fn get_last_committed_epoch(
table: &DeltaTable,
writer_id: &str,
) -> u64Expand description
Retrieves the last committed epoch for a writer from Delta Lake’s txn metadata.
This is used for exactly-once recovery: on startup, we check what epoch was last committed and skip any epochs <= that value.
§Arguments
table- The Delta Lake table handlewriter_id- The writer identifier to look up
§Returns
The last committed epoch for this writer, or 0 if no commits found.