Herwin Weststrate <herwin@xxxxxxxxxxxxxxxxx> writes: > ... I tried > adding some functions for macaddr_smaller/macaddr_larger to implement > the min/max. The code for it was very trivial, but then I got completely > lost in pg_proc.h/pg_aggregate.h. I fail to find the documentation for > this files as well, is there any reference I could use to finish my work? Well, you'd need two pg_proc entries for macaddr_smaller/macaddr_larger, and two more for the min and max aggregates, and then two pg_aggregate entries as well. Looking at the existing entries related to some other datatype (inet, perhaps) ought to let you move forward. However, if you're thinking of submitting a patch ... it's too late for any more feature submissions for v11, and I expect that by the time v12 opens, the bootstrap data representation will have changed, cf the discussion at https://www.postgresql.org/message-id/flat/CAJVSVGWO48JbbwXkJz_yBFyGYW-M9YWxnPdxJBUosDC9ou_F0Q@xxxxxxxxxxxxxx So, while you'll still need the same six new catalog entries, what you actually have to write is going to look completely different. You might want to stick this project on the back burner for a month or so, until that dust settles. regards, tom lane