diff --git a/test/tap/tests/mysql_query_logging_memory-t.cpp b/test/tap/tests/mysql_query_logging_memory-t.cpp index 9d160d9eb..f87de525f 100644 --- a/test/tap/tests/mysql_query_logging_memory-t.cpp +++ b/test/tap/tests/mysql_query_logging_memory-t.cpp @@ -159,7 +159,20 @@ bool checkQueryResult(MYSQL* conn, const std::string& query, const std::map::const_iterator it = expectedResults.begin() ; it != expectedResults.end() ; it++) { + diag(" %d : %d", it->first, it->second); + } + diag("ActualResult:"); + for (std::map::const_iterator it = actualResults.begin() ; it != actualResults.end() ; it++) { + diag(" %d : %d", it->first, it->second); + } + } + return ret; }