From 79c7f1376819f7610040702e5259e95ff321b1fa Mon Sep 17 00:00:00 2001 From: Rahim Kanji Date: Wed, 13 Nov 2024 16:22:12 +0500 Subject: [PATCH] Clean up --- include/Base_Session.h | 2 +- include/MySQL_Session.h | 2 +- include/PgSQL_Session.h | 2 +- lib/MySQL_Session.cpp | 4 ++-- lib/PgSQL_Session.cpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/Base_Session.h b/include/Base_Session.h index 52474d8dc..97fb94bba 100644 --- a/include/Base_Session.h +++ b/include/Base_Session.h @@ -90,7 +90,7 @@ class Base_Session { bool schema_locked; bool transaction_persistent; bool session_fast_forward; - bool started_sending_data_to_client; // this status variable tracks if some result set was sent to the client, or if proxysql is still buffering everything + //bool started_sending_data_to_client; // this status variable tracks if some result set was sent to the client, or if proxysql is still buffering everything bool use_ssl; MySQL_STMTs_meta *sess_STMTs_meta; StmtLongDataHandler *SLDH; diff --git a/include/MySQL_Session.h b/include/MySQL_Session.h index 541ce2105..44cb5c8ae 100644 --- a/include/MySQL_Session.h +++ b/include/MySQL_Session.h @@ -351,7 +351,7 @@ class MySQL_Session: public Base_Session