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

#include <IO/SchedulerNodeFactory.h>

namespace DB
{

void registerFifoQueue(SchedulerNodeFactory & factory)
{
    factory.registerMethod<FifoQueue>("fifo");
}

}