deltalake_core::kernel

Trait DataCheck

Source
pub trait DataCheck {
    // Required methods
    fn get_name(&self) -> &str;
    fn get_expression(&self) -> &str;
}
Expand description

A trait for all kernel types that are used as part of data checking

Required Methods§

Source

fn get_name(&self) -> &str

The name of the specific check

Source

fn get_expression(&self) -> &str

The SQL expression to use for the check

Implementors§