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 superusers can use untrusted languages.
I know that python isn't a 'trusted' language, but I'm willing to take my chances here. Any way to convince PostgreSQL to let me run Python stored procedures as a normal user?
Adam