I installed PL / Python on my postgresql server in postgres privilleges:
netherlands=
Now I need to grant permissions so that I can use it as a regular user:
netherlands=# GRANT ALL ON LANGUAGE plpythonu TO adam; ERROR: language "plpythonu" is not trusted HINT: Only superusers can use untrusted languages.
I know that python is not a "reliable" language, but I am ready to take my chances here. Any way to convince PostgreSQL to let me run Python stored procedures as a regular user?
python postgresql
Adam matan
source share