Skip to content

Commit

Permalink
Include ALL modifier for set operators in multi-stage query engine ph…
Browse files Browse the repository at this point in the history
…ysical explain plan (apache#13166)
  • Loading branch information
yashmayya authored May 16, 2024
1 parent 892ab7f commit 41dae72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public boolean isAll() {

@Override
public String explain() {
return _setOpType.toString();
return _all ? _setOpType.toString() + "_ALL" : _setOpType.toString();
}

@Override
Expand Down

0 comments on commit 41dae72

Please sign in to comment.