aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/IO/Resource/PriorityPolicy.cpp
blob: bee9a6d5dde90aaf6277759e210b0c94334aa596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <IO/Resource/PriorityPolicy.h>

#include <IO/SchedulerNodeFactory.h>

namespace DB
{

void registerPriorityPolicy(SchedulerNodeFactory & factory)
{
    factory.registerMethod<PriorityPolicy>("priority");
}

}