azof 0.2.1

Lakehouse format with event time travel
Documentation
1
2
3
4
5
6
7
use chrono::{DateTime, Utc};

#[derive(Copy, Eq, Debug, Hash, PartialEq, Clone)]
pub enum AsOf {
    Current,
    EventTime(DateTime<Utc>),
}