diff options
Diffstat (limited to 'yql/essentials/core/yql_execution.cpp')
| -rw-r--r-- | yql/essentials/core/yql_execution.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yql/essentials/core/yql_execution.cpp b/yql/essentials/core/yql_execution.cpp index df1680eff51..1125338bc72 100644 --- a/yql/essentials/core/yql_execution.cpp +++ b/yql/essentials/core/yql_execution.cpp @@ -4,6 +4,7 @@ #include "yql_linear_checker.h" #include <yql/essentials/core/yql_opt_utils.h> +#include <yql/essentials/core/langver/feature.gen.h> #include <yql/essentials/utils/log/log.h> #include <yql/essentials/utils/yql_panic.h> @@ -993,7 +994,7 @@ TAutoPtr<IGraphTransformer> CreateCheckExecutionTransformer(const TTypeAnnotatio }); } - if (!hasErrors && types.LangVer >= MakeLangVersion(2025, 4)) { + if (!hasErrors && types.LangVer >= NFeature::LinearTypes.MinLangVer) { hasErrors = !ValidateLinearTypes(*input, ctx); } |
