blob: 248ff04cbd7415ce3f5ec8d49f09b2d4e09bd389 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <IO/Resource/FairPolicy.h>
#include <IO/SchedulerNodeFactory.h>
namespace DB
{
void registerFairPolicy(SchedulerNodeFactory & factory)
{
factory.registerMethod<FairPolicy>("fair");
}
}
|