Skip to content

Commit

Permalink
fix: Needs to convert to unsigned.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo authored Oct 27, 2023
1 parent 654570c commit e0330dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl From<ExecResult> for ProxyExecResult {
#[cfg(feature = "sqlx-sqlite")]
ExecResultHolder::SqlxSqlite(result) => {
ProxyExecResult::Inserted(vec![ProxyExecResultIdType::Integer(
result.last_insert_rowid(),
result.last_insert_rowid() as u64,
)])
}
#[cfg(feature = "mock")]
Expand Down

0 comments on commit e0330dd

Please sign in to comment.