summaryrefslogtreecommitdiff
path: root/sql/sql_union.cc
diff options
context:
space:
mode:
authorigor@rurik.mysql.com <>2003-11-25 15:00:31 -0800
committerigor@rurik.mysql.com <>2003-11-25 15:00:31 -0800
commit413f6b2f83e333099343597127e0374becb0d06a (patch)
tree6e39efd43f56f554d653dae6780e4b5ecd6e9b2f /sql/sql_union.cc
parent66a6f95c47b51a5fca6a27ebda6adc643e384587 (diff)
downloadmariadb-git-413f6b2f83e333099343597127e0374becb0d06a.tar.gz
sql_union.cc:
Fixed a bug: missing semicolon.
Diffstat (limited to 'sql/sql_union.cc')
-rw-r--r--sql/sql_union.cc2
1 files changed, 1 insertions, 1 deletions
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);
}
}
}