mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
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
This commit is contained in:
parent
83772bc576
commit
799299a5e5
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue