diff options
author | Michael Widenius <monty@askmonty.org> | 2010-05-27 20:18:31 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-05-27 20:18:31 +0300 |
commit | 80ba8556e772fd7e4eb369c64bb32ca44f93e221 (patch) | |
tree | cf991484ab999e60eb9b33d81733fca16b368cf9 /support-files | |
parent | 9e23495b1dc988526776768f50a30f647d793d14 (diff) | |
download | mariadb-git-80ba8556e772fd7e4eb369c64bb32ca44f93e221.tar.gz |
Fixed compiler warnings
Fixed failing test innodb.innodb-autoinc.test
Enabled innodb test suite
mysql-test/mysql-test-run.pl:
Enabled innodb test suite
mysql-test/r/innodb-autoinc.result:
Removed test as it exists in suite innodb
mysql-test/suite/innodb/t/disabled.def:
Removed innodb-autoinc
mysql-test/suite/innodb/t/innodb-autoinc.test:
Update to be able to run with plugin
mysql-test/t/innodb-autoinc.test:
Removed test as it exists in suite innodb
sql/filesort.cc:
Removed not used variable
sql/slave.cc:
Remove compiler warnings
storage/pbxt/src/ha_pbxt.cc:
Removed not used variable
storage/xtradb/dict/dict0crea.c:
Fixed compiler warning about unsigned comparison
support-files/compiler_warnings.supp:
Disable some not relevant warnings
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/compiler_warnings.supp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/support-files/compiler_warnings.supp b/support-files/compiler_warnings.supp index e2aaab05f91..8e2b63e7a46 100644 --- a/support-files/compiler_warnings.supp +++ b/support-files/compiler_warnings.supp @@ -42,7 +42,8 @@ ut/ut0ut\.c: ignoring return value of srv/srv0srv\.c: value computed is not used buf/buf0buf\.c: .*block_mutex.* might be used uninitialized btr/btr0cur\.c: null argument where non-null required: 1800-3000 -ibuf/ibuf0ibuf.c: null argument where non-null required: 700-100 +btr/btr0btr\.c: null argument where non-null required: 2500-3000 +ibuf/ibuf0ibuf.c: null argument where non-null required: 700-1000 # # bdb is not critical to keep up to date @@ -129,6 +130,7 @@ xaction_xt\.cc: may be used uninitialized in this function # storage/pbxt/ : typedef.*was ignored in this declaration ha_pbxt\.cc : variable.*might be clobbered by.*longjmp +table_xt\.cc : variable.*might be clobbered by ~longjm~p or ~vfork~ # # Yassl |