From eddb4beea0d495ef52ab37f282ac67203cec01a8 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 28 Mar 2022 17:11:46 +0200 Subject: [PATCH] Log can't-do-yets --- lib/db_ido_mysql/idomysqlconnection.cpp | 26 ++++++++++--------------- lib/db_ido_mysql/idomysqlconnection.hpp | 1 + 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/lib/db_ido_mysql/idomysqlconnection.cpp b/lib/db_ido_mysql/idomysqlconnection.cpp index fbe60b303..2eb9fd5f4 100644 --- a/lib/db_ido_mysql/idomysqlconnection.cpp +++ b/lib/db_ido_mysql/idomysqlconnection.cpp @@ -488,6 +488,8 @@ void IdoMysqlConnection::FinishConnect(double startTime) Query("COMMIT"); Query("BEGIN"); + + m_Reconnected = true; } void IdoMysqlConnection::ClearTablesBySession() @@ -1016,12 +1018,10 @@ void IdoMysqlConnection::InternalExecuteMultipleQueries(const std::vector m_AsyncQueries; uint_fast32_t m_UncommittedAsyncQueries = 0; + bool m_Reconnected = false; Timer::Ptr m_ReconnectTimer; Timer::Ptr m_TxTimer;