mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
20 lines
422 B
C++
20 lines
422 B
C++
|
#include <Functions/IFunction.h>
|
||
|
#include <Functions/CastOverloadResolver.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
namespace ErrorCodes
|
||
|
{
|
||
|
extern const int NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
FunctionBasePtr createFunctionBaseCast(
|
||
|
ContextPtr, const ColumnsWithTypeAndName &, const DataTypePtr &, std::optional<CastDiagnostic>, CastType)
|
||
|
{
|
||
|
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Type conversions are not implemented for ODBC Bridge");
|
||
|
}
|
||
|
|
||
|
}
|