mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Remove reltarget_has_non_vars flag.
Commit b12fd41c6
added a "reltarget_has_non_vars" field to RelOptInfo,
but failed to maintain it accurately. Since its only purpose was to skip
calls to has_parallel_hazard() in the simple case where a rel's targetlist
is all Vars, and that call is really pretty cheap in that case anyway, it
seems like this is just a case of premature optimization. Let's drop the
flag and do the calls unconditionally until it's proven that we need more
smarts here.
This commit is contained in:
@ -613,12 +613,10 @@ set_rel_consider_parallel(PlannerInfo *root, RelOptInfo *rel,
|
||||
return;
|
||||
|
||||
/*
|
||||
* If the relation's outputs are not parallel-safe, we must give up. In
|
||||
* the common case where the relation only outputs Vars, this check is
|
||||
* very cheap; otherwise, we have to do more work.
|
||||
* Likewise, if the relation's outputs are not parallel-safe, give up.
|
||||
* (Usually, they're just Vars, but sometimes they're not.)
|
||||
*/
|
||||
if (rel->reltarget_has_non_vars &&
|
||||
has_parallel_hazard((Node *) rel->reltarget->exprs, false))
|
||||
if (has_parallel_hazard((Node *) rel->reltarget->exprs, false))
|
||||
return;
|
||||
|
||||
/* We have a winner. */
|
||||
@ -984,7 +982,6 @@ set_append_rel_size(PlannerInfo *root, RelOptInfo *rel,
|
||||
adjust_appendrel_attrs(root,
|
||||
(Node *) rel->reltarget->exprs,
|
||||
appinfo);
|
||||
childrel->reltarget_has_non_vars = rel->reltarget_has_non_vars;
|
||||
|
||||
/*
|
||||
* We have to make child entries in the EquivalenceClass data
|
||||
|
Reference in New Issue
Block a user