athena_rs 3.22.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Snapshot fetch error contracts for `/debug/schema`.
//!
//! This module centralizes fetch-stage error variants so snapshot querying,
//! report-loading services, and HTTP error mapping reuse one contract.

/// Fetch-stage failures while assembling a logging-schema snapshot.
pub(super) enum LoggingSchemaSnapshotError {
    /// Relation query failed.
    FetchRelations(sqlx::Error),
    /// Column query failed.
    FetchColumns(sqlx::Error),
}