bazof 0.1.0

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

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