comphead commented on issue #2448:
URL:
https://github.com/apache/datafusion-comet/issues/2448#issuecomment-3341996202
I dont see normalized code is called, checking
but Spark and DF has diff vision on min
```
scala> spark.sql("select min(a) from (select cast(-0.0 as float) a union all
select cast(0.0 as float))").show(false)
+------+
|min(a)|
+------+
|0.0 |
+------+
```
```
> select min(a) from (select 0.0::float a union all select -0.0::float);
+--------+
| min(a) |
+--------+
| -0.0 |
+--------+
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]