aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/getFuzzerData.cpp
blob: 6d74861992668b901776c87cb782677dba827028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef FUZZING_MODE
#include <Functions/getFuzzerData.h>

namespace DB
{

REGISTER_FUNCTION(GetFuzzerData)
{
    factory.registerFunction<FunctionGetFuzzerData>();
}

}
#endif