mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Suppress subquery pullup/pushdown when a subquery contains volatile
functions in its targetlist, to avoid introducing multiple evaluations of volatile functions that textually appear only once. This is a slightly tighter version of Jaime Casanova's recent patch.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.151 2006/08/10 02:36:28 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.152 2006/08/19 02:48:53 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -871,6 +871,10 @@ compare_tlist_datatypes(List *tlist, List *colTypes,
|
||||
* 5. We must not push down any quals that refer to subselect outputs that
|
||||
* return sets, else we'd introduce functions-returning-sets into the
|
||||
* subquery's WHERE/HAVING quals.
|
||||
*
|
||||
* 6. We must not push down any quals that refer to subselect outputs that
|
||||
* contain volatile functions, for fear of introducing strange results due
|
||||
* to multiple evaluation of a volatile function.
|
||||
*/
|
||||
static bool
|
||||
qual_is_pushdown_safe(Query *subquery, Index rti, Node *qual,
|
||||
@ -940,6 +944,13 @@ qual_is_pushdown_safe(Query *subquery, Index rti, Node *qual,
|
||||
safe = false;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Refuse volatile functions (point 6) */
|
||||
if (contain_volatile_functions((Node *) tle->expr))
|
||||
{
|
||||
safe = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
list_free(vars);
|
||||
|
Reference in New Issue
Block a user