athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Schema catalog query-loading helpers.
//!
//! This module owns service-layer loading for non-query schema catalog
//! endpoints (`/schema` and `/schema/tables`), decoupling SQL fetch
//! orchestration from HTTP response shaping.

mod overview;
mod tables;

pub(super) use overview::load_schema_overview_rows;
pub(super) use tables::load_schema_table_rows;