Managing my own index partitions

2022-08-08 Thread Chris Cleveland
(resending because I sent the original from the wrong email address...) I'm building a Postgres index access method. For a variety of reasons it's more efficient to store the index data in multiple physical files on disk rather than in the index's main fork. I'm trying to create separate rels tha

Managing my own index partitions

2022-08-08 Thread Chris Cleveland
I'm building a Postgres index access method. For a variety of reasons it's more efficient to store the index data in multiple physical files on disk rather in the index's main fork. I'm trying to create separate rels that can be created and destroyed by the parent index access method. I've succeed