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 /sql/slave.cc | |
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 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index 63c1c9e2c09..e92070ebcc1 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -2849,7 +2849,6 @@ pthread_handler_t handle_slave_sql(void *arg) my_off_t saved_log_pos; my_off_t saved_master_log_pos; my_off_t saved_skip= 0; - Relay_log_info* rli = &((Master_info*)arg)->rli; const char *errmsg; @@ -2857,6 +2856,8 @@ pthread_handler_t handle_slave_sql(void *arg) my_thread_init(); DBUG_ENTER("handle_slave_sql"); + LINT_INIT(saved_master_log_pos); + LINT_INIT(saved_log_pos); DBUG_ASSERT(rli->inited); pthread_mutex_lock(&rli->run_lock); DBUG_ASSERT(!rli->slave_running); |