aboutsummaryrefslogtreecommitdiffstats
path: root/yql/tools/yqlrun/gateway_spec.cpp
blob: b53b5ecce88277c2516c5df526824483d8e48842 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <yql/tools/yqlrun/gateway_spec.h>

#include <library/cpp/getopt/last_getopt.h>

using namespace NYql;
using namespace NKikimr::NMiniKQL;

void ExtProviderSpecific(const IFunctionRegistry* funcRegistry,
        TVector<TDataProviderInitializer>& dataProvidersInit,
        const THashMap<std::pair<TString, TString>, TVector<std::pair<TString, TString>>>& rtmrTableAttributes) {
    Y_UNUSED(funcRegistry);
    Y_UNUSED(dataProvidersInit);
    Y_UNUSED(rtmrTableAttributes);
}