summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/mkql_program_builder.h
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-06-23 13:38:54 +0300
committervvvv <[email protected]>2025-06-23 14:22:17 +0300
commit99a63eaece7367f17dac58e66e45043aa641d9f7 (patch)
treed104b51aab8eaf495f95d81525716e34b5bef983 /yql/essentials/minikql/mkql_program_builder.h
parenta731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff)
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/mkql_program_builder.h')
-rw-r--r--yql/essentials/minikql/mkql_program_builder.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/yql/essentials/minikql/mkql_program_builder.h b/yql/essentials/minikql/mkql_program_builder.h
index 67a74dd48b6..f5a6fc28e73 100644
--- a/yql/essentials/minikql/mkql_program_builder.h
+++ b/yql/essentials/minikql/mkql_program_builder.h
@@ -160,7 +160,7 @@ public:
template <typename T, typename = std::enable_if_t<NUdf::TKnownDataType<T>::Result>>
TRuntimeNode NewDataLiteral(T data) const {
- return TRuntimeNode(BuildDataLiteral(NUdf::TUnboxedValuePod(data), NUdf::TDataType<T>::Id, Env), true);
+ return TRuntimeNode(BuildDataLiteral(NUdf::TUnboxedValuePod(data), NUdf::TDataType<T>::Id, Env_), true);
}
@@ -168,7 +168,7 @@ public:
TRuntimeNode NewTzDataLiteral(typename NUdf::TDataType<T>::TLayout value, ui16 tzId) const {
auto data = NUdf::TUnboxedValuePod(value);
data.SetTimezoneId(tzId);
- return TRuntimeNode(BuildDataLiteral(data, NUdf::TDataType<T>::Id, Env), true);
+ return TRuntimeNode(BuildDataLiteral(data, NUdf::TDataType<T>::Id, Env_), true);
}
template <NUdf::EDataSlot Type>
@@ -868,10 +868,10 @@ private:
bool IsNull(TRuntimeNode arg);
protected:
- const IFunctionRegistry& FunctionRegistry;
- const bool VoidWithEffects;
- const NYql::TLangVersion LangVer;
- NUdf::ITypeInfoHelper::TPtr TypeInfoHelper;
+ const IFunctionRegistry& FunctionRegistry_;
+ const bool VoidWithEffects_;
+ const NYql::TLangVersion LangVer_;
+ NUdf::ITypeInfoHelper::TPtr TypeInfoHelper_;
};
bool CanExportType(TType* type, const TTypeEnvironment& env);