We could start by supporting incremental time which only require so store a timestamp.
In Rust we would require the time crate and use OffsetDateTime::from_unix_timestamp(0)
in C language, time_t type is built-in
For size optimization, use a 'resolution' field in column record of toml configuration field. Can be used with the boxed strategy to store timestamp as a shorter integer column.
Date and time management may be incredibly complex, see also this article.
We could start by supporting incremental time which only require so store a timestamp.
In Rust we would require the time crate and use OffsetDateTime::from_unix_timestamp(0)
in C language, time_t type is built-in
For size optimization, use a 'resolution' field in column record of toml configuration field. Can be used with the boxed strategy to store timestamp as a shorter integer column.