comphead commented on issue #3990:
URL:
https://github.com/apache/arrow-datafusion/issues/3990#issuecomment-1369341752
Spark has another naming convention
```
scala> spark.sql("select 1, 2, 1, 2, 1 + 1, (select 1), (select 2), sum(1),
sum(1) over (), current_date(), current_date()").show(false)
+---+---+---+---+-------+----------------+----------------+------+----------------------------------------------------------------------+--------------+--------------+
|1 |2 |1 |2 |(1 + 1)|scalarsubquery()|scalarsubquery()|sum(1)|sum(1)
OVER (ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED
FOLLOWING)|current_date()|current_date()|
+---+---+---+---+-------+----------------+----------------+------+----------------------------------------------------------------------+--------------+--------------+
|1 |2 |1 |2 |2 |1 |2 |1 |1
|2023-01-02
|2023-01-02 |
+---+---+---+---+-------+----------------+----------------+------+----------------------------------------------------------------------+--------------+--------------+
```
it uses scalar values, or function names from plan
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]