jayzhan211 opened a new issue, #14895:
URL: https://github.com/apache/datafusion/issues/14895

   ### Describe the bug
   
   ```
   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(*)`
   
   `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_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to