aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-07-31 15:49:54 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-07-31 15:49:54 +0000
commit5bd7b8342685a7d6d5ab134b321f8e4ccfdeaa16 (patch)
treebc7f7a7fb65e86c9e4641a753328d0a4c07d86bc /src
parenteda73a5df91d797b8b39906d574f6de59c57c0ad (diff)
downloadpostgresql-5bd7b8342685a7d6d5ab134b321f8e4ccfdeaa16.tar.gz
postgresql-5bd7b8342685a7d6d5ab134b321f8e4ccfdeaa16.zip
Fix security definer functions with polymorphic arguments. This case has
never worked because fmgr_security_definer() neglected to pass the fn_expr information through. Per report from Viatcheslav Kalinin.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/fmgr/fmgr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/fmgr/fmgr.c b/src/backend/utils/fmgr/fmgr.c
index df4594b4358..e493aba7877 100644
--- a/src/backend/utils/fmgr/fmgr.c
+++ b/src/backend/utils/fmgr/fmgr.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.102 2006/10/04 00:30:01 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/fmgr/fmgr.c,v 1.102.2.1 2007/07/31 15:49:54 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -793,6 +793,7 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
fmgr_info_cxt_security(fcinfo->flinfo->fn_oid, &fcache->flinfo,
fcinfo->flinfo->fn_mcxt, true);
+ fcache->flinfo.fn_expr = fcinfo->flinfo->fn_expr;
tuple = SearchSysCache(PROCOID,
ObjectIdGetDatum(fcinfo->flinfo->fn_oid),