18
0
Fork 0

Procédure pour activer module `pgcrypto`

This commit is contained in:
abenmiloud 2020-06-30 09:28:04 +02:00
parent b454ea4f74
commit 875b412331
1 changed files with 24 additions and 0 deletions

View File

@ -1295,3 +1295,27 @@ RemainAfterExit=on
[Install]
WantedBy=multi-user.target
~~~
### Activer module `pgcrypto`
Dans le *shell* `psql` :
~~~
hostname=# drop extension pgcrypto;
hostname=# create extension pgcrypto;
~~~
Pour vérifier :
~~~
hostname=# select pg_get_functiondef(to_regproc('gen_random_uuid'));
pg_get_functiondef
-----------------------------------------------------------
CREATE OR REPLACE FUNCTION public.gen_random_uuid() +
RETURNS uuid +
LANGUAGE c +
PARALLEL SAFE +
AS '$libdir/pgcrypto', $function$pg_random_uuid$function$+
(1 row)
~~~