Query: in case of joins, we shouldn't be materializing Inner if the qsre itself is not present in final projection #10210
Labels
area-perf
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
punted-for-2.1
type-enhancement
Milestone
Query:
produces the following query plan:
We actually don't need to materialize inner, so the materializer could be simplified by stripping the transparent identifier.
Another case that could also be improved, is when element of the inner is present in the final projection, but the inner qsre is not. In that case, we also don't need to materialize the inner and we can directly bind to the value buffer instead:
The text was updated successfully, but these errors were encountered: