Skip to content
Closed
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 @@ -105,6 +105,12 @@ trait CheckAnalysis {

cleaned.foreach(checkValidAggregateExpression)

case u @ Union(left, right) if left.output.size != right.output.size =>
failAnalysis(
s"union's left child and right child have different output size. " +
s"union node: $u left output size: ${left.output.size}, " +
s"right output size: ${right.output.size}")

case _ => // Fallbacks to the following checks
}

Expand Down