mirror of
https://github.com/isar/rusqlite.git
synced 2025-10-20 15:18:58 +08:00
Replace column index/count type (i32) with usize
Breaking change
This commit is contained in:
@@ -216,7 +216,7 @@ impl<'a> Context<'a> {
|
||||
Error::InvalidFunctionParameterType(idx, value.data_type())
|
||||
}
|
||||
FromSqlError::OutOfRange(i) => {
|
||||
Error::IntegralValueOutOfRange(idx as c_int,
|
||||
Error::IntegralValueOutOfRange(idx,
|
||||
i)
|
||||
}
|
||||
FromSqlError::Other(err) => {
|
||||
|
Reference in New Issue
Block a user