diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-14 19:53:59 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-14 19:53:59 +0000 |
| commit | bd04184b110ecd02e2f24e13751e5bf131d51c5e (patch) | |
| tree | d7450008363c27a91958248ea1c13d31d4d7627d /contrib/tablefunc/sql | |
| parent | f7978c6f1dbd638ddcb211e0de173ec91146b256 (diff) | |
| download | postgresql-bd04184b110ecd02e2f24e13751e5bf131d51c5e.tar.gz | |
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
Diffstat (limited to 'contrib/tablefunc/sql')
| -rw-r--r-- | contrib/tablefunc/sql/tablefunc.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/tablefunc/sql/tablefunc.sql b/contrib/tablefunc/sql/tablefunc.sql index 3d58d81407..25b430e4a0 100644 --- a/contrib/tablefunc/sql/tablefunc.sql +++ b/contrib/tablefunc/sql/tablefunc.sql @@ -1,6 +1,6 @@ -- -- first, define the functions. Turn off echoing so that expected file --- does not depend on contents of seg.sql. +-- does not depend on contents of tablefunc.sql. -- \set ECHO none \i tablefunc.sql |
