You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-4841 compiler fixes
This commit is contained in:
@ -136,7 +136,6 @@ class BatchPrimitiveProcessor
|
||||
{
|
||||
fBusy = b;
|
||||
}
|
||||
|
||||
uint16_t FilterCount() const
|
||||
{
|
||||
return filterCount;
|
||||
@ -435,6 +434,8 @@ class BatchPrimitiveProcessor
|
||||
bool firstInstance;
|
||||
uint64_t valuesLBID;
|
||||
|
||||
static const uint64_t maxResultCount = 1048576; // 2^20
|
||||
|
||||
friend class Command;
|
||||
friend class ColumnCommand;
|
||||
friend class DictStep;
|
||||
|
@ -84,7 +84,7 @@ class BPPSendThread
|
||||
{
|
||||
return die;
|
||||
}
|
||||
void setProcessorPool(threadpool::PriorityThreadPool* processorPool)
|
||||
void setProcessorPool(boost::shared_ptr<threadpool::PriorityThreadPool> processorPool)
|
||||
{
|
||||
fProcessorPool = processorPool;
|
||||
}
|
||||
@ -148,7 +148,7 @@ class BPPSendThread
|
||||
uint64_t maxByteSize;
|
||||
// Used to tell the PriorityThreadPool It should consider additional threads because a
|
||||
// queue full event has happened and a thread has been blocked.
|
||||
threadpool::PriorityThreadPool* fProcessorPool;
|
||||
boost::shared_ptr<threadpool::PriorityThreadPool> fProcessorPool;
|
||||
};
|
||||
|
||||
} // namespace primitiveprocessor
|
||||
|
Reference in New Issue
Block a user