mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
sql_union.cc:
Fixed a bug: missing semicolon.
This commit is contained in:
parent
66a6f95c47
commit
413f6b2f83
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ int st_select_lex_unit::prepare(THD *thd, select_result *sel_result)
|
|||
while((type= tp++, item= it++))
|
||||
{
|
||||
if (((Item_type_holder*)type)->join_types(thd, item))
|
||||
DBUG_RETURN(-1)
|
||||
DBUG_RETURN(-1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue