Thread: Re: All supported PostgreSQL 17 extensions list
On Tue, 2025-05-27 at 18:01 +0500, Zaid Shabbir wrote: > I’m looking for a complete list of PostgreSQL 17 extensions — both open-source > and proprietary. I found a link, but it doesn’t seem to include all available extensions. > > Is there an official or community-maintained source where I can find a comprehensive > list of supported extensions? There is no "supported". Each extension has to support itself. An exception are the "contrib" extensions shipped with PostgreSQL: they are supported by the PGDG. There is also no complete list of extensions that I am aware of. In addition to the link you mention, you can search Github and pgxn.org; that should cover a lot of them. Yours, Laurenz Albe
On 27 May 2025, at 4:29 PM, Laurenz Albe <laurenz.albe@cybertec.at> wrote:On Tue, 2025-05-27 at 18:01 +0500, Zaid Shabbir wrote:I’m looking for a complete list of PostgreSQL 17 extensions — both open-source
and proprietary. I found a link, but it doesn’t seem to include all available extensions.
Is there an official or community-maintained source where I can find a comprehensive
list of supported extensions?
There is no "supported". Each extension has to support itself.
An exception are the "contrib" extensions shipped with PostgreSQL:
they are supported by the PGDG.
There is also no complete list of extensions that I am aware of.
In addition to the link you mention, you can search Github and
pgxn.org; that should cover a lot of them.
Yours,
Laurenz Albe
this list is can be useful too
On 05/27/25 09:29, Laurenz Albe wrote: > There is no "supported". Each extension has to support itself. > An exception are the "contrib" extensions shipped with PostgreSQL: > they are supported by the PGDG. > > There is also no complete list of extensions that I am aware of. There is some info in the slides from David Wheeler's talk at PGConf.dev earlier this month: https://www.pgevents.ca/events/pgconfdev2025/sessions/session/331/slides/87/pgconf.dev-2025-adventures-extension-packaging.pdf The fifth slide has this link: https://gist.github.com/joelonsql/e5aa27f8cc9bd22b8999b7de8aee9d47 ... which seems to include not quite 1200 extensions. Regards, -Chap