blob: 1fd85be3bdabdfda2604b93afe09108a0b58271c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <yql/essentials/minikql/mkql_node.h>
#include <arrow/datum.h>
namespace NKikimr::NMiniKQL {
class IBuiltinFunctionRegistry;
bool FindArrowFunction(TStringBuf name, const TArrayRef<TType*>& inputTypes, TType* outputType, const IBuiltinFunctionRegistry& registry);
bool ConvertInputArrowType(TType* blockType, arrow::ValueDescr& descr);
bool HasArrowCast(TType* from, TType* to);
}
|