質問

Just wondering if there is an official list for extensions that are available for PostgreSQL?

役に立ちましたか?

解決

This is a frequently asked question.

  • Users and SQL calls them "extensions". You add them with CREATE EXTENSION.
  • They get packaged by distros like Ubuntu as postgresql-contrib or the like.
  • The docs calls them "Additional Supplied Modules", but "modules" isn't really used anywhere else. I'm not sure you should ever call anything a module, but it seems to be used here to refer to packaged extensions. Perhaps it's from the days when extensions were just SQL scripts.

You can find the list of PostgreSQL extensions officially supported here.

PGXN.org is a great resource for finding third party modules/extensions/contrib-ie stuff too.

ライセンス: CC-BY-SA帰属
所属していません dba.stackexchange
scroll top