You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/03/30 20:43:34 UTC

[GitHub] [arrow-datafusion] mateuszkj commented on pull request #2128: MINOR: fix concat_ws corner bug

mateuszkj commented on pull request #2128:
URL: https://github.com/apache/arrow-datafusion/pull/2128#issuecomment-1083606926


   Now it's failing with two NULLs at last arguments.
   
   To Reproduce
   ```sql
   SELECT concat_ws('|','a',NULL, NULL);
   -- Result: a|
   ```
   Expected behavior
   ```sql
   SELECT concat_ws('|','a',NULL, NULL);
   -- Result: a
   ```


-- 
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-unsubscribe@arrow.apache.org

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