MDEV-28817: Derived table elimination fails when field aliases are used#4866
Open
MDEV-28817: Derived table elimination fails when field aliases are used#4866
Conversation
When a derived table's SELECT list contains the same column under multiple aliases (e.g. "SELECT a, b, a as a2 FROM t2 GROUP BY a, b"), the table elimination logic failed to recognize that the aliased column is also part of the GROUP BY pseudo-key. The root cause was in find_field_in_list() which only recorded the first matching position in the SELECT list for each GROUP BY element. If the ON clause referenced the column via a different alias (a later position), covers_field() would not find it in the pseudo-key bitmap. Fix: find_field_in_list() now marks ALL matching positions in the SELECT list, so every alias of a GROUP BY column is recognized as part of the pseudo-key.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a derived table's SELECT list contains the same column under multiple aliases (e.g. "SELECT a, b, a as a2 FROM t2 GROUP BY a, b"), the table elimination logic failed to recognize that the aliased column is also part of the GROUP BY pseudo-key.
The root cause was in find_field_in_list() which only recorded the first matching position in the SELECT list for each GROUP BY element. If the ON clause referenced the column via a different alias (a later position), covers_field() would not find it in the pseudo-key bitmap.
Fix: find_field_in_list() now marks ALL matching positions in the SELECT list, so every alias of a GROUP BY column is recognized as part of the pseudo-key.