v3.0_dynamic_fast_forward
Rahim Kanji 1 year ago
parent 0590950250
commit 79c7f13768

@ -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;

@ -351,7 +351,7 @@ class MySQL_Session: public Base_Session<MySQL_Session, MySQL_Data_Stream, MySQL
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;
#endif // 0
/**

@ -341,7 +341,7 @@ public:
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;
#endif // 0
/**

@ -632,7 +632,7 @@ MySQL_Session::MySQL_Session() {
user_attributes=NULL;
schema_locked=false;
session_fast_forward=false;
started_sending_data_to_client=false;
//started_sending_data_to_client=false;
handler_function=NULL;
client_myds=NULL;
to_process=0;
@ -7476,7 +7476,7 @@ void MySQL_Session::RequestEnd(MySQL_Data_Stream *myds) {
CurrentQuery.end();
}
}
started_sending_data_to_client=false;
//started_sending_data_to_client=false;
previous_hostgroup = current_hostgroup;
}

@ -557,7 +557,7 @@ PgSQL_Session::PgSQL_Session() {
user_attributes = NULL;
schema_locked = false;
session_fast_forward = false;
started_sending_data_to_client = false;
//started_sending_data_to_client = false;
handler_function = NULL;
client_myds = NULL;
to_process = 0;
@ -6519,7 +6519,7 @@ void PgSQL_Session::RequestEnd(PgSQL_Data_Stream* myds) {
CurrentQuery.end();
}
}
started_sending_data_to_client = false;
//started_sending_data_to_client = false;
previous_hostgroup = current_hostgroup;
}

Loading…
Cancel
Save