Commit 7344af9c authored by unknown's avatar unknown
Browse files

Ensure that a 'bool' function really returns a value - was compiler error on...

Ensure that a 'bool' function really returns a value - was compiler error on some problems causing build failure.


parent 744ceabe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1445,7 +1445,7 @@ static bool mysql_insert_select_prepare_tester(THD *thd)
    and item_list belong to SELECT
  */
  first_select->resolve_mode= SELECT_LEX::SELECT_MODE;
  mysql_insert_select_prepare(thd);
  return mysql_insert_select_prepare(thd);
}