athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Schema catalog fetch execution facade.
//!
//! This module preserves a stable fetch import surface while concrete execution
//! is split by concern:
//! - `service_catalog_fetch_relations`
//! - `service_catalog_fetch_columns`
//! - `service_catalog_fetch_constraints`

pub use super::service_catalog_fetch_columns::fetch_columns;
pub use super::service_catalog_fetch_constraints::fetch_unique_constraints;
pub use super::service_catalog_fetch_relations::fetch_relations;