summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2003-11-25 15:00:31 -0800
committerunknown <igor@rurik.mysql.com>2003-11-25 15:00:31 -0800
commit2f045bc44ea9b7e0091c6c6dee57e3da495fde55 (patch)
tree6e39efd43f56f554d653dae6780e4b5ecd6e9b2f /sql
parent7c952d7c7f07eb3c8b7f1c6a835d726eedc87d5a (diff)
downloadmariadb-git-2f045bc44ea9b7e0091c6c6dee57e3da495fde55.tar.gz
sql_union.cc:
Fixed a bug: missing semicolon. sql/sql_union.cc: Fixed a bug: missing semicolon.
Diffstat (limited to 'sql')
-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);
}
}
}