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/04/03 12:43:22 UTC

[GitHub] [arrow-datafusion] WinkerDu opened a new issue #2141: Add 'StringConcat' operator to df

WinkerDu opened a new issue #2141:
URL: https://github.com/apache/arrow-datafusion/issues/2141


   **Is your feature request related to a problem or challenge? Please describe what you are trying to do.**
   df now has not implemented `StringConcat` operator, like
   ```
   ❯ select 'aa' || 'b';
   NotImplemented("Unsupported SQL binary operator StringConcat")
   ```
   But Postgres SQL will come out results lile
   ```
   select 'aa' || 'b';
    ?column? 
   ----------
    aab
   (1 row)
   ```
   
   **Describe the solution you'd like**
   Reuse df build-in `concat` string expression to do it.
   
   **Describe alternatives you've considered**
   No.
   
   **Additional context**
   No.
   


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



[GitHub] [arrow-datafusion] WinkerDu commented on issue #2141: Add 'StringConcat' operator to df

Posted by GitBox <gi...@apache.org>.
WinkerDu commented on issue #2141:
URL: https://github.com/apache/arrow-datafusion/issues/2141#issuecomment-1086862259


   A raw implementation here: #2142 


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