pgtle.extension_update_paths
The extension_update_paths
function is a set-returning function. It returns a
list of all the possible update paths for a TLE extension. Each row includes the
available upgrades or downgrades for that TLE extension.
Function prototype
pgtle.extension_update_paths(name)
Role
None.
Arguments
name
– The name of the TLE extension from which to get upgrade paths.
Output
source
– The source version for an update.target
– The target version for an update.path
– The upgrade path used to update a TLE extension fromsource
version totarget
version, for example,0.1--0.2
.
Usage example
SELECT * FROM pgtle.extension_update_paths('
your-TLE
);