Thread: pgsql-server/contrib/tablefunc tablefunc.sql.i ...

pgsql-server/contrib/tablefunc tablefunc.sql.i ...

From
tgl@postgresql.org (Tom Lane)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql-server
Changes by:    tgl@postgresql.org    02/09/14 15:53:59

Modified files:
    contrib/tablefunc: tablefunc.sql.in
    contrib/tablefunc/expected: tablefunc.out
    contrib/tablefunc/sql: tablefunc.sql

Log message:
    Attached is a patch to fix some recently raised issues that exist in
    contrib/tablefunc. Specifically it replaces the use of VIEWs (for needed
    composite type creation) with use of CREATE TYPE. It also performs GRANT
    EXECUTE ON FUNCTION foo() TO PUBLIC for all of the created functions. There
    was also a cosmetic change to two regression files.

    Joe Conway