You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
This patch removes Out-Of-Band pool from PP
This commit is contained in:
committed by
Roman Nozdrin
parent
2c2e1f9924
commit
4d41a945db
@ -24,9 +24,8 @@ class PrimitiveServerThreadPools
|
||||
{
|
||||
public:
|
||||
PrimitiveServerThreadPools() = default;
|
||||
PrimitiveServerThreadPools(boost::shared_ptr<threadpool::FairThreadPool> primServerThreadPool,
|
||||
boost::shared_ptr<threadpool::FairThreadPool> OOBThreadPool)
|
||||
: fPrimServerThreadPool(primServerThreadPool), fOOBThreadPool(OOBThreadPool)
|
||||
PrimitiveServerThreadPools(boost::shared_ptr<threadpool::FairThreadPool> primServerThreadPool)
|
||||
: fPrimServerThreadPool(primServerThreadPool)
|
||||
{
|
||||
}
|
||||
|
||||
@ -35,12 +34,6 @@ class PrimitiveServerThreadPools
|
||||
return fPrimServerThreadPool;
|
||||
}
|
||||
|
||||
boost::shared_ptr<threadpool::FairThreadPool> getOOBThreadPool()
|
||||
{
|
||||
return fOOBThreadPool;
|
||||
}
|
||||
|
||||
private:
|
||||
boost::shared_ptr<threadpool::FairThreadPool> fPrimServerThreadPool;
|
||||
boost::shared_ptr<threadpool::FairThreadPool> fOOBThreadPool;
|
||||
};
|
||||
|
Reference in New Issue
Block a user