comphead commented on issue #2552:
URL: 
https://github.com/apache/datafusion-comet/issues/2552#issuecomment-3403642868

   Spark has different behavior with nulls
   
   ```
   scala> spark.sql("select concat('1', '2', null)").show(false)
   +------------------+
   |concat(1, 2, NULL)|
   +------------------+
   |NULL              |
   +------------------+
   
   ```
   
   Others
   
   ```
   D select concat('1', '2', null);
   ┌────────────────────────┐
   │ concat('1', '2', NULL) │
   │        varchar         │
   ├────────────────────────┤
   │ 12                     │
   └────────────────────────┘
   ```


-- 
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