diff options
author | Michael Widenius <monty@askmonty.org> | 2014-02-06 16:14:09 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2014-02-06 16:14:09 +0200 |
commit | 313f18be5a4b9c56d9c7331227f72e3f2fa4f9fe (patch) | |
tree | 6427fe4c05a8fa7025db373ba8e684b0286ce3c1 /support-files | |
parent | 1695fc45326434806ea747dd63fee4481e545493 (diff) | |
download | mariadb-git-313f18be5a4b9c56d9c7331227f72e3f2fa4f9fe.tar.gz |
Fixed errors and warnings found by buildbot
mysql-test/r/lowercase_table2.result:
Updated result
(The change happend because we don't try to open the table anymore as part of create table)
mysql-test/suite/rpl/r/create_or_replace_mix.result:
Fixed result file
mysql-test/suite/rpl/r/create_or_replace_row.result:
Fixed result file
mysql-test/suite/rpl/r/create_or_replace_statement.result:
Fixed result file
mysql-test/suite/rpl/t/create_or_replace.inc:
Drop open temporary table
mysys/my_delete.c:
Added missing newline
plugin/metadata_lock_info/mysql-test/metadata_lock_info/r/user_lock.result:
Fixed result
(Lock names was before off by one. Was corrected by my previous patch)
sql/sql_select.cc:
Fixed compiler warnings by adding missing casts
storage/connect/ha_connect.cc:
Fixed compiler warnings
storage/innobase/os/os0file.cc:
Fixed compiler warnings
storage/xtradb/btr/btr0btr.cc:
Fixed compiler warnings
storage/xtradb/handler/ha_innodb.cc:
removed not used function
strings/ctype-uca.c:
Fixed compiler warnings
support-files/compiler_warnings.supp:
Added suppression for warnings that are wrong or are not serious andthat we don't plan to fix.
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/compiler_warnings.supp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/support-files/compiler_warnings.supp b/support-files/compiler_warnings.supp index ef8d68a09d2..de390839704 100644 --- a/support-files/compiler_warnings.supp +++ b/support-files/compiler_warnings.supp @@ -52,6 +52,12 @@ log/log0log\.c : passing arg 1 of `atomic_add_64_nv' from incompatible pointer t log/log0online\.c : passing arg 1 of `atomic_add_64_nv' from incompatible pointer type # +# Xtradb engine +# +storage/xtradb/handler/ha_innodb\.cc: ignoring return value of +storage/xtradb/row/row0log\.cc: ignoring return value of + +# # bdb is not critical to keep up to date # .*/bdb/.* : .*discards qualifiers from pointer target type.* @@ -172,6 +178,15 @@ vio/viosslfactories\.c: discards ~const~ qualifier from pointer target type # jemalloc # jemalloc/src/jemalloc\.c: always_inline function might not be inlinable +jemalloc/src/jemalloc\.c: set but not used + +# +# Connect engine +# +storage/connect/connect\.cc: might be clobbered by ~longjmp~ +storage/connect/filamvct\.cpp: ignoring return value of +storage/connect/filamvct\.cpp: might be clobbered by ~longjmp~ +storage/connect/xindex\.cpp: ignoring return value of # # Unexplanable (?) stuff |