On Mon, Apr 26, 2010 at 03:28:12PM -0700, Jonathan Leto wrote:
> Howdy,
>
> What is the proper way to deal with this?
>
> $ make test
> psql -AX -f t/sql/test.sql
> psql:plparrot.sql:3: ERROR: permission denied for language c
> make: *** [test] Error 3
C language functions can be created only by a postgres superuser. So:
psql -U <some_superuser> -AXf t/sql/test.sql