1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

Bugfixes from develop (#2095)

* MaxConcurrentTransactions were not cleared when config is wrong (#2093)

* Wrong concatenation in between predicate (#2092)

* We forgot to initilize longdoublenull value (#2091)

* WriteBatchFieldMariaDB m_type was wrong (#2090)

* moda returned local object pointer (#2089)

* Wrong power of 2 in esimator` (#2088)

* targetDbroot should be assined, not compared (#2087)

* obviously wrong bytesTx assignment (#2086)

* GetInterrupted returned bool instead of bool * (#2085)
This commit is contained in:
Leonid Fedorov
2021-08-19 18:02:09 +03:00
committed by GitHub
parent e79c9ef1a3
commit ea622eec93
9 changed files with 72 additions and 120 deletions

View File

@@ -460,7 +460,7 @@ int RedistributeControlThread::makeRedistributePlan()
{
if (targetDbroot == targetDbroots.end())
{
targetDbroot == targetDbroots.begin();
targetDbroot = targetDbroots.begin();
}
if (dbPartVec[*targetDbroot].size() < partCount)

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)