mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-26 03:11:36 +08:00
Rustfmt
This commit is contained in:
parent
1acd753a63
commit
5e79126a60
@ -105,7 +105,10 @@ unsafe impl<'vtab> VTab<'vtab> for SeriesTab {
|
|||||||
constraint_usage.set_omit(true);
|
constraint_usage.set_omit(true);
|
||||||
}
|
}
|
||||||
if !(unusable_mask & !idx_num).is_empty() {
|
if !(unusable_mask & !idx_num).is_empty() {
|
||||||
return Err(Error::SqliteFailure(ffi::Error::new(ffi::SQLITE_CONSTRAINT), None));
|
return Err(Error::SqliteFailure(
|
||||||
|
ffi::Error::new(ffi::SQLITE_CONSTRAINT),
|
||||||
|
None,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
if idx_num.contains(QueryPlanFlags::BOTH) {
|
if idx_num.contains(QueryPlanFlags::BOTH) {
|
||||||
// Both start= and stop= boundaries are available.
|
// Both start= and stop= boundaries are available.
|
||||||
|
Loading…
Reference in New Issue
Block a user