summaryrefslogtreecommitdiff
path: root/sql/sql_union.cc
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
commit487f0ed2da12e7ea0020fc0743130269ea7f8a7b (patch)
tree6e39efd43f56f554d653dae6780e4b5ecd6e9b2f /sql/sql_union.cc
parenta6b0da48061ff27d91bfaef608cc4e03f7af2ee6 (diff)
downloadmariadb-git-487f0ed2da12e7ea0020fc0743130269ea7f8a7b.tar.gz
sql_union.cc:
Fixed a bug: missing semicolon. sql/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);
}
}
}