Replace column index/count type (i32) with usize

Breaking change
This commit is contained in:
gwenn
2018-05-23 21:04:13 +02:00
parent 5c44ed79d3
commit c6f4ae632a
6 changed files with 41 additions and 41 deletions

View File

@@ -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) => {