izveigor commented on issue #6804: URL: https://github.com/apache/arrow-datafusion/issues/6804#issuecomment-1628652976
@BubbaJoe you can use `array[index]` to get the result: ``` ❯ select make_array(1,2,3)[1]; +-------------------------------------------+ | make_array(Int64(1),Int64(2),Int64(3))[1] | +-------------------------------------------+ | 1 | +-------------------------------------------+ 1 row in set. Query took 0.001 seconds. ``` If you are interested in the implementation of the function itself, then we are now discussing this: https://github.com/apache/arrow-datafusion/discussions/6855 -- 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]
