Skip to main content

athena_driver/postgresql/
mod.rs

1//! Portable PostgreSQL helper modules used by Athena driver surfaces.
2//!
3//! These modules stay below the server runtime boundary and can be shared by
4//! gateway, scheduler, and future standalone driver consumers.
5
6pub mod column_resolver;
7pub mod json_row_expr;
8pub mod raw_sql;
9pub mod schema_cache;