athena_rs 3.26.3

Hyper performant polyglot Database driver
1
2
3
4
5
6
7
8
9
10
11
12
//! Legacy missing-table compatibility contracts for `/debug/schema`.
//!
//! This module owns the compatibility payload shape used for top-level
//! `missing_required_tables`/`missing_optional_tables` fields.

/// Compatibility payload for legacy top-level missing-table fields.
pub(super) struct LoggingSchemaDebugLegacyMissingTables {
    /// Required missing table keys (`schema.table`).
    pub(super) missing_required_tables: Vec<String>,
    /// Optional missing table keys (`schema.table`).
    pub(super) missing_optional_tables: Vec<String>,
}