Commits


Heres, Daniel authored and Jorge C. Leitao committed 437c9173c3e
ARROW-11401: [Rust][DataFusion] Pass slices instead of Vec in DataFrame API This PR makes the API a bit more ergonomic to use (saving 3 characters per parameter), avoiding creating a `Vec` with a macro, or cloning an existing one. It is also more consistent, for example `DataFrame::join` already was taking parameters by `&[&str]` instead of `Vec<&str>`. This is a (big) backwards incompatible change. Closes #9338 from Dandandan/dataframe_api Authored-by: Heres, Daniel <danielheres@gmail.com> Signed-off-by: Jorge C. Leitao <jorgecarleitao@gmail.com>