Appendix F. Additional Supplied Modules
Table of Contents
- F.1. adminpack
- F.2. amcheck
- F.3. auth_delay
- F.4. auto_explain
- F.5. bloom
- F.6. btree_gin
- F.7. btree_gist
- F.8. citext
- F.9. cube
- F.10. dblink
- F.11. dict_int
- F.12. dict_xsyn
- F.13. dump_stat
- F.14. earthdistance
- F.15. fasttrun
- F.16. file_fdw
- F.17. fulleq
- F.18. fuzzystrmatch
- F.19. hstore
- F.20.Hunspell Dictionaries Modules
- F.21. intagg
- F.22. intarray
- F.23. isn
- F.24. jsquery
- F.25. lo
- F.26. ltree
- F.27. mchar
- F.28. online_analyze
- F.29. pageinspect
- F.30. passwordcheck
- F.31. pg_buffercache
- F.32. pgcrypto
- F.33. pg_freespacemap
- F.34. pg_pathman
- F.35. pgpro_pwr — workload reports
- F.36. pg_prewarm
- F.37. pgpro_stats
- F.38. pg_query_state
- F.39. pgrowlocks
- F.40. pg_stat_statements
- F.41. pgstattuple
- F.42. pg_trgm
- F.43. pg_tsparser
- F.44. pg_variables
- F.45. pg_visibility
- F.46. pg_wait_sampling
- F.47. plantuner
- F.48. postgres_fdw
- F.49. ptrack
- F.50. rum
- F.51. seg
- F.52. sepgsql
- F.53. shared_ispell
- F.54. spi
- F.55. sr_plan
- F.56. sslinfo
- F.57. tablefunc
- F.58. tcn
- F.59. test_decoding
- F.60. tsm_system_rows
- F.61. tsm_system_time
- F.62. unaccent
- F.63. uuid-ossp
- F.64. xml2
- F.2. amcheck
This appendix and the next one contain information regarding additional modules available in thePostgres Pro Standard distribution. These include porting tools, analysis utilities, and plug-in features that are not part of the core Postgres Pro system, mainly because they address a limited audience or are too experimental to be part of the main source tree. This does not preclude their usefulness.
This appendix covers the extensions and other server plug-in modules.Appendix G covers the utility programs.
InPostgres Pro Standard, these modules are made available as a separate subpackagepostgrespro-std-12-contrib
.
Many modules supply new user-defined functions, operators, or types. To make use of one of these modules, after you have installed the code you need to register the new SQL objects in the database system. InPostgres Pro, andPostgreSQL 9.1 and later, this is done by executing aCREATE EXTENSION command. In a fresh database, you can simply do
CREATE EXTENSIONmodule_name
;
This command must be run by a database superuser. This registers the new SQL objects in the current database only, so you need to run this command in each database that you want the module's facilities to be available in. Alternatively, run it in databasetemplate1
so that the extension will be copied into subsequently-created databases by default.
Many modules allow you to install their objects in a schema of your choice. To do that, addSCHEMA
to theschema_name
CREATE EXTENSION
command. By default, the objects will be placed in your current creation target schema, which in turn defaults topublic
.
If your database was brought forward by dump and reload from a pre-9.1 version ofPostgreSQL, and you had been using the pre-9.1 version of the module in it, you should instead do
CREATE EXTENSIONmodule_name
FROM unpackaged;
This will update the pre-9.1 objects of the module into a properextension object. Future updates to the module will be managed byALTER EXTENSION. For more information about extension updates, seeSection 36.17.
Note, however, that some of these modules are not“extensions” in this sense, but are loaded into the server in some other way, for instance by way ofshared_preload_libraries. See the documentation of each module for details.