mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
feat(postgres): add support for i128 and u128
This commit is contained in:
parent
3d575495e7
commit
d04fcbb2a7
@ -95,8 +95,10 @@ impl_type_int! { i8 => SMALLINT }
|
||||
impl_type_int! { i16 => SMALLINT }
|
||||
impl_type_int! { i32 => INTEGER }
|
||||
impl_type_int! { i64 => BIGINT }
|
||||
impl_type_int! { i128 => BIGINT }
|
||||
|
||||
impl_type_int! { u8 => SMALLINT }
|
||||
impl_type_int! { u16 => SMALLINT }
|
||||
impl_type_int! { u32 => INTEGER }
|
||||
impl_type_int! { u64 => BIGINT }
|
||||
impl_type_int! { u128 => BIGINT }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user