athena_rs 3.22.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Column-delta contract types for `/debug/schema` comparison.
//!
//! This module owns the missing/unexpected column delta contract used by
//! expected-vs-observed table comparison policy.

/// Column-delta result from expected-vs-observed comparison.
pub(super) struct LoggingSchemaColumnDelta {
    /// Expected columns missing from observed table metadata.
    pub(super) missing_columns: Vec<String>,
    /// Observed columns that are not listed in expected columns.
    pub(super) unexpected_columns: Vec<String>,
}