Skip to main content

drizzle_postgres/builder/
cte.rs

1//! Common Table Expression (CTE / `WITH`) support for `PostgreSQL`.
2
3use crate::values::PostgresValue;
4
5drizzle_core::impl_cte_types!(value_type: PostgresValue<'a>);