athena_rs 3.26.4

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
//! Query-driven schema catalog loader helpers.
//!
//! This module owns service-layer loading for schema endpoints that depend on
//! normalized query input (`/schema/columns` and `/schema/constraints`).

mod columns;
mod constraints;

pub(super) use columns::load_schema_column_rows;
pub(super) use constraints::load_schema_constraint_rows;