Commits


Ritchie Vink authored and Andrew Lamb committed 36d31eb5b07
ARROW-11481: [Rust] More cast implementations This PR adds some more cast implementations that I missed. Included casts: ``` * LargeList -> List (of same child datatype) (if not will return Error) * List -> LargeList (of same child datatype) (if not will return Error) * LargeList<A> -> LargeList<B> * Int32 -> Date64 * Date32 -> Int64 * Int64 -> Date32 (lossy) * Date64 -> Int32 (lossy) ``` Closes #9402 from ritchie46/more_casts Authored-by: Ritchie Vink <ritchie46@gmail.com> Signed-off-by: Andrew Lamb <andrew@nerdnetworks.org>