mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Fix missing ToSql asserts for isize, usize & u64
This commit is contained in:
parent
f6cd0a5384
commit
88e5882de9
@ -267,9 +267,12 @@ mod test {
|
|||||||
is_to_sql::<i16>();
|
is_to_sql::<i16>();
|
||||||
is_to_sql::<i32>();
|
is_to_sql::<i32>();
|
||||||
is_to_sql::<i64>();
|
is_to_sql::<i64>();
|
||||||
|
is_to_sql::<isize>();
|
||||||
is_to_sql::<u8>();
|
is_to_sql::<u8>();
|
||||||
is_to_sql::<u16>();
|
is_to_sql::<u16>();
|
||||||
is_to_sql::<u32>();
|
is_to_sql::<u32>();
|
||||||
|
is_to_sql::<u64>();
|
||||||
|
is_to_sql::<usize>();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user