1 2 3 4 5 6 7 8 9 10 11
//! PostgreSQL database adapter. //! //! Provides connection pooling and query execution for PostgreSQL. mod adapter; mod introspector; mod where_generator; pub use adapter::{PoolPrewarmConfig, PostgresAdapter}; pub use introspector::PostgresIntrospector; pub use where_generator::{IndexedColumnsCache, PostgresWhereGenerator};