We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
query TT explain SELECT count(*) order by count(*); ---- logical_plan 01)Projection: count(*) 02)--Sort: count(Int64(1)) AS count(*) AS count(*) ASC NULLS LAST 03)----Projection: count(Int64(1)) AS count(*), count(Int64(1)) 04)------Aggregate: groupBy=[[]], aggr=[[count(Int64(1))]] 05)--------EmptyRelation physical_plan 01)ProjectionExec: expr=[1 as count(*)] 02)--PlaceholderRowExec
We can see that Sort has two count(*)
count(*)
Sort: count(Int64(1)) AS count(*) AS count(*) ASC NULLS LAST
I think ideally we should has single alias
No response
The text was updated successfully, but these errors were encountered:
count_all()
count(1)
Do not double alias Exprs
c809148
UPSTREAM NOTE: This was attempted to be fixed with apache#15008 but was closed This is the tracking issue on DataFusion: apache#14895
Successfully merging a pull request may close this issue.
Describe the bug
We can see that Sort has two
count(*)
Sort: count(Int64(1)) AS count(*) AS count(*) ASC NULLS LAST
I think ideally we should has single alias
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: