plpython

PostgreSQL: Running Python stored procedures as a normal user

Hi, I've installed PL/Python on my postgresql server under postgres privilleges: netherlands=# CREATE PROCEDURAL LANGUAGE plpythonu; CREATE LANGUAGE Now I need to grant permissions so I can use it as a normal user: netherlands=# GRANT ALL ON LANGUAGE plpythonu TO adam; ERROR: language "plpythonu" is not trusted HINT: Only su...