andygrove opened a new issue, #486:
URL: https://github.com/apache/datafusion-comet/issues/486

   ### Describe the bug
   
   I discovered this bug using [Comet 
Fuzz](https://github.com/apache/datafusion-comet/pull/472).
   
   ```sql
   SELECT Signum(c6) FROM test1
   ```
   
   [ERROR] Spark and Comet produced different results.
   ### Spark Plan
   ```
   *(1) Project [SIGNUM(cast(c6#26 as double)) AS SIGNUM(c6)#18070]
   +- *(1) ColumnarToRow
      +- FileScan parquet [c6#26] Batched: true, DataFilters: [], Format: 
Parquet, Location: InMemoryFileIndex(1 
paths)[file:/Users/andy/git/apple/comet-fuzz/test1.parquet], PartitionFilters: 
[], PushedFilters: [], ReadSchema: struct<c6:tinyint>
   
   ```
   ### Comet Plan
   ```
   *(1) ColumnarToRow
   +- CometProject [SIGNUM(c6)#18074], [SIGNUM(cast(c6#26 as double)) AS 
SIGNUM(c6)#18074]
      +- CometScan parquet [c6#26] Batched: true, DataFilters: [], Format: 
CometParquet, Location: InMemoryFileIndex(1 
paths)[file:/Users/andy/git/apple/comet-fuzz/test1.parquet], PartitionFilters: 
[], PushedFilters: [], ReadSchema: struct<c6:tinyint>
   
   ```
   ### Results 
   Spark produced 200 rows and Comet produced 200 rows.
   First difference at row 87:
   Spark: `[0.0]`
   Comet: `[1.0]`
   
   ### Steps 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: [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]

Reply via email to