diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-07-05 14:20:14 +0200 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-07-05 14:20:14 +0200 |
commit | 7d17a42d35552b3617464a16a65cd337f57a7a62 (patch) | |
tree | 76677abc42bc716f6d4ed57ddc6052a2fe1a965f /sql/ha_ndbcluster_binlog.cc | |
parent | e4e3aa462f097896dcb3d9909a6796d226d7e860 (diff) | |
download | mariadb-git-7d17a42d35552b3617464a16a65cd337f57a7a62.tar.gz |
extra logging and asserts to try to track down the spurious completeCluster failure assetion
corrected error in invalidation of dict cache which may be causing the valgrind warning at times
sql/ha_ndbcluster_binlog.cc:
extra logging and asserts to try to track down the spurious completeCluster failure assetion
storage/ndb/src/ndbapi/DictCache.cpp:
corrected error in invalidation of dict cache which may be causing the valgrind warning at times
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp:
extra logging and asserts to try to track down the spurious completeCluster failure assetion
storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp:
extra logging and asserts to try to track down the spurious completeCluster failure assetion
Diffstat (limited to 'sql/ha_ndbcluster_binlog.cc')
-rw-r--r-- | sql/ha_ndbcluster_binlog.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc index b88002b8529..0c0b7ae7a19 100644 --- a/sql/ha_ndbcluster_binlog.cc +++ b/sql/ha_ndbcluster_binlog.cc @@ -3466,6 +3466,11 @@ restart: ndb_latest_applied_binlog_epoch= 0; ndb_latest_received_binlog_epoch= 0; } + if (ndb_extra_logging) + { + sql_print_information("NDB Binlog: starting log at epoch %u", + (unsigned)schema_gci); + } } } { |