Fix missing ToSql asserts for isize, usize & u64

This commit is contained in:
xaos 2023-04-05 03:44:46 +02:00
parent f6cd0a5384
commit 88e5882de9

View File

@ -267,9 +267,12 @@ mod test {
is_to_sql::<i16>();
is_to_sql::<i32>();
is_to_sql::<i64>();
is_to_sql::<isize>();
is_to_sql::<u8>();
is_to_sql::<u16>();
is_to_sql::<u32>();
is_to_sql::<u64>();
is_to_sql::<usize>();
}
#[test]