Re: int64 support in List API

2025-03-03 Thread James Hunter
On Sun, Jan 19, 2025 at 9:12 PM Yura Sokolov wrote: > > 20.01.2025 07:36, Tom Lane пишет: ... > > This has been discussed before, and we've felt that it wasn't worth > > the additional code duplication. I would not favor approaching this > > with the mindset of lets-copy-and-paste-all-the-code. >

Re: int64 support in List API

2025-01-19 Thread Yura Sokolov
20.01.2025 07:36, Tom Lane пишет: Gurjeet Singh writes: I wanted to use the list api from pg_list.h. It has special implementations for int, oid, pointer, and xid types, which help with lower code overhead (no need to create structures whose sole member is of one of these types) and better per

Re: int64 support in List API

2025-01-19 Thread Tom Lane
Gurjeet Singh writes: > I wanted to use the list api from pg_list.h. It has special implementations > for > int, oid, pointer, and xid types, which help with lower code overhead (no need > to create structures whose sole member is of one of these types) and better > performance. So I was wonderi