Commit e44403fe authored by unknown's avatar unknown

Fixes to eliminate compiler warnings.


sql/log.cc:
  Reordering initialalizer list to eliminate compiler warnings.
parent 74c2a019
......@@ -153,7 +153,7 @@ class Mutex_sentry
class binlog_trx_data {
public:
binlog_trx_data()
: m_pending(0), before_stmt_pos(MY_OFF_T_UNDEF), at_least_one_stmt(0)
: at_least_one_stmt(0), m_pending(0), before_stmt_pos(MY_OFF_T_UNDEF)
{
trans_log.end_of_file= max_binlog_cache_size;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment