Skip to content

Commit 3c4624c

Browse files
authored
[KIKIMR-21174] Remove wrong RuntimeVersion check (#2605)
1 parent dafc1cc commit 3c4624c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/library/yql/minikql/mkql_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2529,7 +2529,7 @@ EValueRepresentation GetValueRepresentation(const TType* type) {
25292529
}
25302530

25312531
TArrayRef<TType* const> GetWideComponents(const TFlowType* type) {
2532-
if (RuntimeVersion > 35) {
2532+
if (type->GetItemType()->IsMulti()) {
25332533
return AS_TYPE(TMultiType, type->GetItemType())->GetElements();
25342534
}
25352535
return AS_TYPE(TTupleType, type->GetItemType())->GetElements();

0 commit comments

Comments
 (0)