Re: Custom index access method for primary keys

2025-04-07 Thread Tom Lane
Fabian Lindfors writes: > Hi! I’m working on an index access method that I intend to be > generic and to replace btree for my specific use case. I noticed > though that it doesn’t seem to be possible to specify an access > method when creating a new table and using PRIMARY KEY. There's some work

Custom index access method for primary keys

2025-04-07 Thread Fabian Lindfors
Hi! I’m working on an index access method that I intend to be generic and to replace btree for my specific use case. I noticed though that it doesn’t seem to be possible to specify an access method when creating a new table and using PRIMARY KEY. Same applies to altering a table to add a primar