aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yql/plugin/plugin.cpp
blob: f9fd0539517d573a97632aab8ec7e22b99f9da54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "plugin.h"

#include <iostream>

namespace NYT::NYqlPlugin {

////////////////////////////////////////////////////////////////////////////////

Y_WEAK std::unique_ptr<IYqlPlugin> CreateYqlPlugin(TYqlPluginOptions /*options*/) noexcept
{
    std::cerr << "No YQL plugin implementation is available; link against either "
              << "yt/yql/plugin/native or yt/yql/plugin/dynamic" << std::endl;
    exit(1);
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT::NYqlPlugin