Re: Rust conversion

2020-09-18 Thread Roland Peelen
Hi Neville, Great stuff, thanks! I'll go and have a look into that. Roland On 2020/09/16 15:17:42, Neville Dipale wrote: > Hi Roland, > > For primitive types, there are value_slice methods which would allow you to > get the array's contents as a vector, but you have to handle the null > value

Re: Rust conversion

2020-09-16 Thread Neville Dipale
Hi Roland, For primitive types, there are value_slice methods which would allow you to get the array's contents as a vector, but you have to handle the null values as the vectors wouldn't return an Option. We haven't seen demand yet in converting arrays to JSON, but the integration crate ( https:/

Rust conversion

2020-09-16 Thread Roland Peelen
Hi Guys, Quick question. Is there such a thing in the rust library as there is in the pyarrow lib to convert from Arrow types to rust internal types? For instance, to convert to JSON down the line? Or will I have to just go through the colums / rows and match on the schema type to cast the buf