0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-01-19 08:51:49 +00:00
Bartosz Sypytkowski aa2490cd36 Bottomless savepoint (#1085)
* bottomless: added ability to wait for uploaded frames without shutting down

* bottomless: savepoint tracker

* expose bottomless backup savepoint through PrimaryDatabase API

* tests for detached progression updates in bottomless progression tracker

* bottomless: reset savepoint tracker on new generation

* bottomless: expose savepoint tracker on PrimaryDatabase
2024-03-04 09:51:48 +00:00

15 lines
323 B
Rust

#![allow(non_snake_case)]
#![allow(clippy::not_unsafe_ptr_arg_deref)]
#![allow(improper_ctypes)]
mod backup;
pub mod bottomless_wal;
mod completion_progress;
pub mod read;
pub mod replicator;
pub mod transaction_cache;
pub mod uuid_utils;
mod wal;
pub use crate::completion_progress::{BackupThreshold, SavepointTracker};