Correct me if I'm wrong, but pgcrypto only appears to be installed in order to use gen_random_uuid(). That function is available without the extension in Postgres 13+. Is it feasible to make the installation of pgcrypto conditional on version so it can be avoided if unnecessary?
Correct me if I'm wrong, but pgcrypto only appears to be installed in order to use
gen_random_uuid(). That function is available without the extension in Postgres 13+. Is it feasible to make the installation of pgcrypto conditional on version so it can be avoided if unnecessary?