mirror of
https://github.com/isar/rusqlite.git
synced 2025-08-23 14:54:30 +08:00
Merge pull request #448 from gwenn/i128
Fix compilation error with `functions` and `i128` features
This commit is contained in:
@@ -137,6 +137,10 @@ impl<'a> Context<'a> {
|
||||
FromSqlError::Other(err) => {
|
||||
Error::FromSqlConversionFailure(idx, value.data_type(), err)
|
||||
}
|
||||
#[cfg(feature = "i128_blob")]
|
||||
FromSqlError::InvalidI128Size(_) => {
|
||||
Error::FromSqlConversionFailure(idx, value.data_type(), Box::new(err))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user