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