@@ -15,7 +15,7 @@ use std::ops::{Deref, DerefMut};
1515///
1616/// ```rust
1717/// # use sqlx::{Acquire, postgres::Postgres, error::BoxDynError};
18- /// # #[cfg(any(postgres_9_6, postgres_14 ))]
18+ /// # #[cfg(any(postgres_9_6, postgres_15 ))]
1919/// async fn run_query<'a, A>(conn: A) -> Result<(), BoxDynError>
2020/// where
2121/// A: Acquire<'a, Database = Postgres>,
@@ -35,7 +35,7 @@ use std::ops::{Deref, DerefMut};
3535/// ```rust
3636/// # use std::future::Future;
3737/// # use sqlx::{Acquire, postgres::Postgres, error::BoxDynError};
38- /// # #[cfg(any(postgres_9_6, postgres_14 ))]
38+ /// # #[cfg(any(postgres_9_6, postgres_15 ))]
3939/// fn run_query<'a, 'c, A>(conn: A) -> impl Future<Output = Result<(), BoxDynError>> + Send + 'a
4040/// where
4141/// A: Acquire<'c, Database = Postgres> + Send + 'a,
@@ -57,7 +57,7 @@ use std::ops::{Deref, DerefMut};
5757///
5858/// ```rust
5959/// # use sqlx::{postgres::PgConnection, error::BoxDynError};
60- /// # #[cfg(any(postgres_9_6, postgres_14 ))]
60+ /// # #[cfg(any(postgres_9_6, postgres_15 ))]
6161/// async fn run_query(conn: &mut PgConnection) -> Result<(), BoxDynError> {
6262/// sqlx::query!("SELECT 1 as v").fetch_one(&mut *conn).await?;
6363/// sqlx::query!("SELECT 2 as v").fetch_one(&mut *conn).await?;
0 commit comments