You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Kanstantsin Ilchanka (Jira)" <ji...@apache.org> on 2021/11/02 11:04:00 UTC

[jira] [Created] (ARROW-14551) [Ruby] Add ability to pass Arrow::Column to Arrow::Function

Kanstantsin Ilchanka created ARROW-14551:
--------------------------------------------

             Summary: [Ruby] Add ability to pass Arrow::Column to Arrow::Function
                 Key: ARROW-14551
                 URL: https://issues.apache.org/jira/browse/ARROW-14551
             Project: Apache Arrow
          Issue Type: Improvement
          Components: Ruby
            Reporter: Kanstantsin Ilchanka


Instead of 
{code:java}
add = Arrow::Function.find('add')
add.execute([table['age'].data, table['age'].data]).value
{code}
we can pass column directly
{code:java}
add.execute([table['age'], table['age']]).value
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)