diff --git a/sqlx-core/src/sqlite/types/uint.rs b/sqlx-core/src/sqlite/types/uint.rs index b6e22e0eba..df395f010b 100644 --- a/sqlx-core/src/sqlite/types/uint.rs +++ b/sqlx-core/src/sqlite/types/uint.rs @@ -78,27 +78,3 @@ impl<'r> Decode<'r, Sqlite> for u32 { Ok(value.int64().try_into()?) } } - -impl Type for u64 { - fn type_info() -> SqliteTypeInfo { - SqliteTypeInfo(DataType::Int64) - } - - fn compatible(ty: &SqliteTypeInfo) -> bool { - matches!(ty.0, DataType::Int | DataType::Int64) - } -} - -impl<'q> Encode<'q, Sqlite> for u64 { - fn encode_by_ref(&self, args: &mut Vec>) -> IsNull { - args.push(SqliteArgumentValue::Int64(*self as i64)); - - IsNull::No - } -} - -impl<'r> Decode<'r, Sqlite> for u64 { - fn decode(value: SqliteValueRef<'r>) -> Result { - Ok(value.int64().try_into()?) - } -}