1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

obviously wrong bytesTx assignment (#2086)

This commit is contained in:
Leonid Fedorov
2021-08-18 19:50:10 +03:00
committed by GitHub
parent 37ad263a7a
commit 202885ae37

View File

@ -213,7 +213,7 @@ public:
void setBytesTx(uint32_t BytesTx)
{
boost::mutex::scoped_lock aLock(fTxMutex);
BytesTx = BytesTx;
fBytesTx = BytesTx;
aLock.unlock();
}
void updateBytesTx(uint32_t fBytes)