summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_udf.cpp
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-04-21 20:53:56 +0300
committervvvv <[email protected]>2025-04-21 21:26:59 +0300
commit108c1aa409626aa29ca728edafd01fbbd7a1b00e (patch)
treeb88c1e3b690a29b0ed4f505f05990d656d6373ec /yql/essentials/minikql/comp_nodes/mkql_udf.cpp
parent6b17ad8c52e16d0088291781e1b5a9e28d028b9b (diff)
YQL-19861 abi, udf resolvers, test, pass via yt gateways
commit_hash:6e3f5fac6a8598586987b52d749644d1ce1fccbe
Diffstat (limited to 'yql/essentials/minikql/comp_nodes/mkql_udf.cpp')
-rw-r--r--yql/essentials/minikql/comp_nodes/mkql_udf.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/yql/essentials/minikql/comp_nodes/mkql_udf.cpp b/yql/essentials/minikql/comp_nodes/mkql_udf.cpp
index c74c282d272..579f4ab09c0 100644
--- a/yql/essentials/minikql/comp_nodes/mkql_udf.cpp
+++ b/yql/essentials/minikql/comp_nodes/mkql_udf.cpp
@@ -50,7 +50,7 @@ public:
ui32 flags = 0;
TFunctionTypeInfo funcInfo;
const auto status = ctx.HolderFactory.GetFunctionRegistry()->FindFunctionTypeInfo(
- ctx.TypeEnv, ctx.TypeInfoHelper, ctx.CountersProvider, FunctionName, UserType->IsVoid() ? nullptr : UserType,
+ ctx.LangVer, ctx.TypeEnv, ctx.TypeInfoHelper, ctx.CountersProvider, FunctionName, UserType->IsVoid() ? nullptr : UserType,
TypeConfig, flags, Pos, ctx.SecureParamsProvider, ctx.LogProvider, &funcInfo);
if (!status.IsOk()) {
@@ -204,7 +204,7 @@ private:
ui32 flags = 0;
TFunctionTypeInfo funcInfo;
const auto status = ctx.HolderFactory.GetFunctionRegistry()->FindFunctionTypeInfo(
- ctx.TypeEnv, ctx.TypeInfoHelper, ctx.CountersProvider, FunctionName, UserType->IsVoid() ? nullptr : UserType,
+ ctx.LangVer, ctx.TypeEnv, ctx.TypeInfoHelper, ctx.CountersProvider, FunctionName, UserType->IsVoid() ? nullptr : UserType,
TypeConfig, flags, Pos, ctx.SecureParamsProvider, ctx.LogProvider, &funcInfo);
if (!status.IsOk()) {
@@ -290,7 +290,7 @@ IComputationNode* WrapUdf(TCallable& callable, const TComputationNodeFactoryCont
const auto userType = static_cast<TType*>(userTypeNode.GetNode());
const auto status = ctx.FunctionRegistry.FindFunctionTypeInfo(
- ctx.Env, ctx.TypeInfoHelper, ctx.CountersProvider, funcName, userType->IsVoid() ? nullptr : userType,
+ ctx.LangVer, ctx.Env, ctx.TypeInfoHelper, ctx.CountersProvider, funcName, userType->IsVoid() ? nullptr : userType,
typeConfig, flags, pos, ctx.SecureParamsProvider, ctx.LogProvider, &funcInfo);
if (!status.IsOk()) {
@@ -352,7 +352,7 @@ IComputationNode* WrapScriptUdf(TCallable& callable, const TComputationNodeFacto
ui32 flags = 0;
TFunctionTypeInfo funcInfo;
const auto status = ctx.FunctionRegistry.FindFunctionTypeInfo(
- ctx.Env, ctx.TypeInfoHelper, ctx.CountersProvider, funcName, userType,
+ ctx.LangVer, ctx.Env, ctx.TypeInfoHelper, ctx.CountersProvider, funcName, userType,
typeConfig, flags, pos, ctx.SecureParamsProvider, ctx.LogProvider, &funcInfo);
if (!status.IsOk()) {