Skip to content

Commit

Permalink
chore: revert changes for sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jan 31, 2025
1 parent 39183dd commit 8f7e21a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ macro_rules! try_getable_uuid {
.and_then(|opt| opt.ok_or_else(|| err_null_idx_col(idx))),
#[cfg(feature = "sqlx-sqlite")]
QueryResultRow::SqlxSqlite(row) => row
.try_get::<Option<uuid::Uuid>, _>(idx.as_sqlx_postgres_index())
.try_get::<Option<uuid::Uuid>, _>(idx.as_sqlx_sqlite_index())
.map_err(|e| sqlx_error_to_query_err(e).into())
.and_then(|opt| opt.ok_or_else(|| err_null_idx_col(idx))),
#[cfg(feature = "mock")]
Expand Down

0 comments on commit 8f7e21a

Please sign in to comment.