Re: Support for unsigned integer types

2024-12-09 Thread Jack Bay
plicitly made unsigned? To be explicit, you could write 42u64 + 1u64 or 42u32 + 1u32... On Sat, Dec 7, 2024 at 8:24 AM Tom Lane wrote: > > Jack Bay writes: > > Would it be possible to add support for unsigned 64-bit and unsigned > > 32-bit integers to postgresql? > > This h

Support for unsigned integer types

2024-12-07 Thread Jack Bay
Unsigned integers are a widely used type and can be important for compact and well-aligned data structures, but are not currently available in PostgreSQL. In particular unsigned 64-bit integers and unsigned 32-bit integers are desirable as identifiers. They unambiguously correspond to specific hex