-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ensure the output order of metric items aligns with their definition order #2222
Comments
I'm interested in this issue, but how do we add some tests for this issue? I guess that |
I have not investigated the implementation details yet. You are encouraged
to try any solution you deem appropriate.
Niwaka ***@***.***> 于2023年9月16日周六 13:15写道:
… I'm interested in this issue, but how do we add some tests for this issue?
I guess that explain analyze tests depends on time.
—
Reply to this email directly, view it on GitHub
<#2222 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGBF34PTFKMMSYB4G5J63A3X2UYXFANCNFSM6AAAAAA3ZI3YHQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This issue happens due to Once I implement a patch, could I submit a PR for this issue to your repository? |
@waynexia PTAL |
Please submit to apache/arrow-datafusion. I'll replace my fork with upstream later |
What problem does the new feature solve?
Let's take the
MergeScanMetric
as an example. In the code, we have defined four metric items in the order of ready time, first consume time, finish time, and output rows. However, the display order of these items in the output of theexplain analyze
SQL query doesn't match the definition order. Ensuring their alignment can enhance the clarity of theexplain analyze
output in certain cases.What does the feature do?
Ensure the output order of metric items aligns with their definition order.
Implementation challenges
No response
The text was updated successfully, but these errors were encountered: