remove sendProgress call when reading data

This commit is contained in:
Sema Checherinda 2024-12-06 17:00:03 +01:00
parent 266e854560
commit ccde2a3cdd

View File

@ -1009,7 +1009,6 @@ void TCPHandler::readData(QueryState & state)
while (receivePacketsExpectData(state)) while (receivePacketsExpectData(state))
{ {
sendProgress(state);
sendLogs(state); sendLogs(state);
sendInsertProfileEvents(state); sendInsertProfileEvents(state);
} }
@ -1114,7 +1113,6 @@ void TCPHandler::processInsertQuery(QueryState & state)
{ {
executor.push(std::move(state.block_for_insert)); executor.push(std::move(state.block_for_insert));
sendProgress(state);
sendLogs(state); sendLogs(state);
sendInsertProfileEvents(state); sendInsertProfileEvents(state);
} }