Is there a way to access PostgreSQL functions from within a PL/Python function?
When I'm writing in PL/pgSQL I can just call them. For example I could write char_length('Bob') in PL/pgSQL and it would use the builtin PostgreSQL function char_length. When I try that for PL/Python it errors with char_length is undefined. Is there a namespace where I can access the builtin functions? plpy.functions.whatever or something like that?
I'm using plpython3u on PostgreSQL 9.5.9.