mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
ea73b98fb9
- Rename generic file and identifier names in library-bridge to something more dictionary-specific. This is needed because later on, catboost will be integrated into library-bridge. - Also: Some smaller fixes like typos and un-inlining non-performance critical code. - The logic remains unchanged in this commit.
20 lines
316 B
C++
20 lines
316 B
C++
#pragma once
|
|
|
|
#include <Interpreters/Context.h>
|
|
#include <Bridge/IBridge.h>
|
|
#include "LibraryBridgeHandlerFactory.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class LibraryBridge : public IBridge
|
|
{
|
|
|
|
protected:
|
|
std::string bridgeName() const override;
|
|
HandlerFactoryPtr getHandlerFactoryPtr(ContextPtr context) const override;
|
|
};
|
|
|
|
}
|