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