Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
exprToProtoInternal(elements._1, inputs)
})
val thenSeq = branches.map(elements => {
allBranches = allBranches :+ elements._1
allBranches = allBranches :+ elements._2
Copy link
Member

@viirya viirya Dec 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, nice catch. Thanks.

Is it possible to add a test for this?

exprToProtoInternal(elements._2, inputs)
})
assert(whenSeq.length == thenSeq.length)
Expand Down
Loading