pgtle.available_extensions - Amazon Aurora

pgtle.available_extensions

The pgtle.available_extensions function is a set-returning function. It returns all available TLE extensions in the database. Each returned row contains information about a single TLE extension.

Function prototype

pgtle.available_extensions()

Role

None.

Arguments

None.

Output

  • name – The name of the TLE extension.

  • default_version – The version of the TLE extension to use when CREATE EXTENSION is called without a version specified.

  • description – A more detailed description about the TLE extension.

Usage example

SELECT * FROM pgtle.available_extensions();