Commit 799299a5 authored by unknown's avatar unknown
Browse files

sql_insert.cc:

  Added cast to bool to fix windows compile problem


sql/sql_insert.cc:
  Added cast to bool to fix windows compile problem
parent 83772bc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1118,7 +1118,7 @@ int check_that_all_fields_are_given_values(THD *thd, TABLE *entry,
        table_list= (table_list->belong_to_view ?
                     table_list->belong_to_view :
                     table_list);
        view= (table_list->view);
        view= (bool)(table_list->view);
      }
      if (view)
      {