From 2f045bc44ea9b7e0091c6c6dee57e3da495fde55 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 25 Nov 2003 15:00:31 -0800 Subject: [PATCH] sql_union.cc: Fixed a bug: missing semicolon. sql/sql_union.cc: Fixed a bug: missing semicolon. --- sql/sql_union.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_union.cc b/sql/sql_union.cc index 44a30082c0a..56713e42244 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -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); } } }