diff options
author | gkodinov/kgeorge@macbook.gmz <> | 2008-03-21 17:23:17 +0200 |
---|---|---|
committer | gkodinov/kgeorge@macbook.gmz <> | 2008-03-21 17:23:17 +0200 |
commit | ff0aac178d8092cc78f77d332b1a68f4100e282c (patch) | |
tree | d2f43f2618b402fbb8989716aacea8b5cb8eb442 /sql/sql_load.cc | |
parent | 3bff5b59c669fa14645fb4705b2406bd2ba0e120 (diff) | |
download | mariadb-git-ff0aac178d8092cc78f77d332b1a68f4100e282c.tar.gz |
Bug #26461: Intrinsic data type bool (1 byte) redefined to BOOL (4 bytes)
The bool data type was redefined to BOOL (4 bytes on windows).
Removed the #define and fixed some of the warnings that were uncovered
by this.
Note that the fix also disables 2 warnings :
4800 : 'type' : forcing value to bool 'true' or 'false' (performance warning)
4805: 'operation' : unsafe mix of type 'type' and type 'type' in operation
These warnings will be handled in a separate bug, as they are performance related or bogus.
Fixed to int the return type of functions that return more than
2 distinct values.
Diffstat (limited to 'sql/sql_load.cc')
-rw-r--r-- | sql/sql_load.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_load.cc b/sql/sql_load.cc index d687ceff393..4da3c19bb3c 100644 --- a/sql/sql_load.cc +++ b/sql/sql_load.cc @@ -110,7 +110,7 @@ static bool write_execute_load_query_log_event(THD *thd, TRUE - error / FALSE - success */ -bool mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list, +int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list, List<Item> &fields_vars, List<Item> &set_fields, List<Item> &set_values, enum enum_duplicates handle_duplicates, bool ignore, |