feat: Better progress reporting for stage checkpoints (#2982)

Co-authored-by: Alexey Shekhirin <a.shekhirin@gmail.com>
This commit is contained in:
Georgios Konstantopoulos
2023-06-05 09:10:46 -07:00
committed by GitHub
parent 6fab79bbc2
commit 08900740bc
28 changed files with 1601 additions and 341 deletions

View File

@ -28,4 +28,7 @@ pub enum DatabaseError {
/// Failed to decode a key from a table.
#[error("Error decoding value.")]
DecodeError,
/// Failed to get database stats.
#[error("Database stats error code: {0:?}")]
Stats(i32),
}