use super::fake_sqlx as sqlx;
impl_database_ext! {
sqlx::sqlite::Sqlite {
bool,
i32,
i64,
f64,
String,
Vec<u8>,
#[cfg(feature = "chrono")]
sqlx::types::chrono::NaiveDate,
#[cfg(feature = "chrono")]
sqlx::types::chrono::NaiveDateTime,
#[cfg(feature = "chrono")]
sqlx::types::chrono::DateTime<sqlx::types::chrono::Utc> | sqlx::types::chrono::DateTime<_>,
#[cfg(feature = "time")]
sqlx::types::time::OffsetDateTime,
#[cfg(feature = "time")]
sqlx::types::time::PrimitiveDateTime,
#[cfg(feature = "time")]
sqlx::types::time::Date,
#[cfg(feature = "uuid")]
sqlx::types::Uuid,
},
ParamChecking::Weak,
feature-types: _info => None,
row: sqlx::sqlite::SqliteRow,
describe-blocking: sqlx_sqlite::describe_blocking,
}