Browse Source

MR: support ALL ROWS PER MATCH fix
commit_hash:e83ac5f9c7e523e798d64dc5262a6b3e07e1bb7f

vokayndzop 2 months ago
parent
commit
3eb1b593d4

+ 1 - 1
yql/essentials/minikql/mkql_program_builder.cpp

@@ -6243,7 +6243,7 @@ TRuntimeNode TProgramBuilder::MatchRecognizeCore(
         callableBuilder.Add(NewDataLiteral(static_cast<i32>(skipTo.To)));
         callableBuilder.Add(NewDataLiteral<NUdf::EDataSlot::String>(skipTo.Var));
     }
-    if constexpr (RuntimeVersion >= 53U) {
+    if constexpr (RuntimeVersion >= 54U) {
         callableBuilder.Add(NewDataLiteral(static_cast<i32>(rowsPerMatch)));
         callableBuilder.Add(NewList(outputColumnEntryType, outputColumnOrder));
     }

+ 1 - 1
yql/essentials/minikql/mkql_runtime_version.h

@@ -24,7 +24,7 @@ namespace NMiniKQL {
 // 1. Bump this version every time incompatible runtime nodes are introduced.
 // 2. Make sure you provide runtime node generation for previous runtime versions.
 #ifndef MKQL_RUNTIME_VERSION
-#define MKQL_RUNTIME_VERSION 53U
+#define MKQL_RUNTIME_VERSION 54U
 #endif
 
 // History: