diff options
author | Igor Babaev <igor@askmonty.org> | 2011-05-19 14:53:16 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-05-19 14:53:16 -0700 |
commit | a19ddf01176ec979b26ef367dd98f135e07049b7 (patch) | |
tree | 383aca68231a9cac6a6d3ff8b5e44144c1679fc4 /sql/sql_union.cc | |
parent | 8ec03d805d1d7e478a8feb37a7486ebc2dd6a630 (diff) | |
download | mariadb-git-a19ddf01176ec979b26ef367dd98f135e07049b7.tar.gz |
Fixed compiler warnings.
Diffstat (limited to 'sql/sql_union.cc')
-rw-r--r-- | sql/sql_union.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_union.cc b/sql/sql_union.cc index 6ad5b814676..f96b2d5c6bc 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -356,8 +356,8 @@ bool st_select_lex_unit::prepare(THD *thd_arg, select_result *sel_result, List_iterator_fast<Item> tp(types); Item *type; ulonglong create_options; - uint save_tablenr; - table_map save_map; + uint save_tablenr= 0; + table_map save_map= 0; while ((type= tp++)) { |