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 /storage/pbxt/src | |
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 'storage/pbxt/src')
-rw-r--r-- | storage/pbxt/src/ha_pbxt.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/pbxt/src/ha_pbxt.cc b/storage/pbxt/src/ha_pbxt.cc index e8ce200ce0f..5bf2069f656 100644 --- a/storage/pbxt/src/ha_pbxt.cc +++ b/storage/pbxt/src/ha_pbxt.cc @@ -1232,8 +1232,6 @@ static int pbxt_init(void *p) THD *thd = NULL; #ifndef DRIZZLED - extern myxt_mutex_t LOCK_plugin; - /* {MYSQL QUIRK} * I have to release this lock for PBXT recovery to * work, because it needs to open .frm files. @@ -1251,6 +1249,7 @@ static int pbxt_init(void *p) * plugin at the same time. */ #if MYSQL_VERSION_ID <= 50146 + extern myxt_mutex_t LOCK_plugin; myxt_mutex_unlock(&LOCK_plugin); #endif #endif |