You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some minor refactoring of function find_item_in_list() before the fix.
- Code is generally aligned with coding standard.
- Error handling is separated out, now is is false for success and
true for error.
- The found item is now an output argument, and a null pointer means
the item was not found (along with the other two out arguments).
- The report_error argument is removed since it was always used as
REPORT_EXCEPT_NOT_FOUND.
- A local variable "find_ident" is introduced, since it better
represents that we are searching for a column reference than having
separate field_name, table_name and db_name variables.
Item_field::replace_with_derived_expr_ref()
- Redundant tests were removed.
Function resolve_ref_in_select_and_group() has also been changed so
that success/error is now returned as false/true, and the found item
is an out argument.
Function Item_field::fix_fields()
- The value of thd->lex->current_query_block() is cached in a local
variable.
- Since single resolving was introduced, a test for "field" equal to
nullptr was redundant and could be eliminated, along with the indented
code block that followed.
- A code block for checking bitmaps if the above test was false could
also be removed.
Change-Id: I3cd4bd6a23dd07faff773bdf11940bcfd847c903
0 commit comments