pgtle.unregister_feature
The unregister_feature
function provides a way to remove functions that were
registered to use pg_tle
features, such as hooks. For information about registering a feature,
see pgtle.register_feature.
Function prototype
pgtle.unregister_feature(proc regproc, feature pg_tle_features)
Role
pgtle_admin
Arguments
proc
– The name of a stored function to register with apg_tle
feature.feature
– The name of thepg_tle
feature to register with the function. For example,passcheck
is a feature that can be registered for use by the trusted language extensions that you develop. For more information, see Password-check hook (passcheck).
Output
None.
Usage example
SELECT * FROM pgtle.unregister_feature(pw_hook, passcheck);