You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +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:
@@ -74,7 +74,7 @@ public:
|
||||
{
|
||||
return bInterrupted;
|
||||
}
|
||||
bool getInterruptedPtr()
|
||||
bool * getInterruptedPtr()
|
||||
{
|
||||
return &bInterrupted;
|
||||
}
|
||||
@@ -98,7 +98,7 @@ protected:
|
||||
bool bHasDropValue; // Set to false when we discover the UDAnF doesn't implement dropValue.
|
||||
// To hold distinct values and their counts
|
||||
typedef std::tr1::unordered_map<static_any::any, uint64_t, DistinctHasher, DistinctEqual> DistinctMap;
|
||||
DistinctMap fDistinctMap;
|
||||
DistinctMap fDistinctMap;
|
||||
|
||||
static_any::any fValOut; // The return value
|
||||
|
||||
|
Reference in New Issue
Block a user