Minor: Add fetch to SortExec display#5279
Conversation
| DisplayFormatType::Default => { | ||
| let expr: Vec<String> = self.expr.iter().map(|e| e.to_string()).collect(); | ||
| write!(f, "SortExec: [{}]", expr.join(",")) | ||
| match self.fetch { |
There was a problem hiding this comment.
This is the change, everything else is just updating tests
|
Benchmark runs are scheduled for baseline = c0defeb and contender = 9a6b76e. 9a6b76e is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
* Add fetch to SortExec display * fix sqllogictests
Which issue does this PR close?
Closes #.
Rationale for this change
If limit gets pushed down into
SortExecshow it in the execution plan displayWhat changes are included in this PR?
Are these changes tested?
Yes
Are there any user-facing changes?
SortExecdisplay now hasfetchin itNo