diff options
author | Seppo Jaakola <seppo.jaakola@codership.com> | 2012-06-12 10:55:11 +0300 |
---|---|---|
committer | Seppo Jaakola <seppo.jaakola@codership.com> | 2012-06-12 10:55:11 +0300 |
commit | 33ffe0dd29b6564e49dde8b1abda914da4b2f178 (patch) | |
tree | d4ed7e628eb0b8bdf7be707261de9d862655211a /sql/wsrep_hton.cc | |
parent | 609388fcfd912c9c2cb03a92251469a25a781893 (diff) | |
download | mariadb-git-33ffe0dd29b6564e49dde8b1abda914da4b2f178.tar.gz |
References lp:1011983
Merged from codership-mysql/5.5 changes revisions 3743-3756
Diffstat (limited to 'sql/wsrep_hton.cc')
-rw-r--r-- | sql/wsrep_hton.cc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sql/wsrep_hton.cc b/sql/wsrep_hton.cc index bb5faafc768..49b3ea5c0bf 100644 --- a/sql/wsrep_hton.cc +++ b/sql/wsrep_hton.cc @@ -305,8 +305,15 @@ wsrep_run_wsrep_commit( thd->stmt_da->affected_rows() > 0 && !binlog_filter->is_on()) { - WSREP_WARN("empty rbr buffer, query: %s, affected rows: %llu", - thd->query(), thd->stmt_da->affected_rows()); + WSREP_DEBUG("empty rbr buffer, query: %s, " + "affected rows: %llu, " + "changed tables: %d, " + "sql_log_bin: %d, " + "wsrep status (%d %d %d)", + thd->query(), thd->stmt_da->affected_rows(), + stmt_has_updated_trans_table(thd), thd->variables.sql_log_bin, + thd->wsrep_exec_mode, thd->wsrep_query_state, + thd->wsrep_conflict_state); } else { |