summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/computation/mkql_validate.h
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-10-09 12:25:18 +0300
committervvvv <[email protected]>2025-10-09 12:57:17 +0300
commitcb77d014972b2cdb27d2e6d979fc3a2772b27ad4 (patch)
tree7f3bcd8ce71c6bd0f3ccc11e31b9f665475b819e /yql/essentials/minikql/computation/mkql_validate.h
parentd58a8990d353b051c27e1069141117fdfde64358 (diff)
YQL-20086 minikql
commit_hash:e96f7390db5fcbe7e9f64f898141a263ad522daa
Diffstat (limited to 'yql/essentials/minikql/computation/mkql_validate.h')
-rw-r--r--yql/essentials/minikql/computation/mkql_validate.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/yql/essentials/minikql/computation/mkql_validate.h b/yql/essentials/minikql/computation/mkql_validate.h
index 62315b1e2d9..642438d2b42 100644
--- a/yql/essentials/minikql/computation/mkql_validate.h
+++ b/yql/essentials/minikql/computation/mkql_validate.h
@@ -9,19 +9,20 @@ struct TValidateErrorPolicyNone;
struct TValidateErrorPolicyThrow;
struct TValidateErrorPolicyFail;
-template<class TErrorPolicy>
+template <class TErrorPolicy>
struct TValidateModeLazy;
-template<class TErrorPolicy>
+template <class TErrorPolicy>
struct TValidateModeGreedy;
-template<class TErrorPolicy, class TValidateMode = TValidateModeLazy<TErrorPolicy>>
+template <class TErrorPolicy, class TValidateMode = TValidateModeLazy<TErrorPolicy>>
struct TValidate {
- static NUdf::TUnboxedValue Value(const NUdf::IValueBuilder* valueBuilder, const TType* type, NUdf::TUnboxedValue&& value, const TString& message, bool* wrapped = nullptr);
+ static NUdf::TUnboxedValue Value(const NUdf::IValueBuilder* valueBuilder, const TType* type,
+ NUdf::TUnboxedValue&& value, const TString& message, bool* wrapped = nullptr);
static void WrapCallable(const TCallableType* callableType, NUdf::TUnboxedValue& callable, const TString& message);
};
-} // namespace MiniKQL
+} // namespace NMiniKQL
} // namespace NKikimr
#include "mkql_validate_impl.h"