Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-16156: [R] Clarify warning message for features not turned on i…
…n .onAttach() After ARROW-15818 (apache#12564) we get an extra message on package load because "engine" was added to `arrow_info()$capabilities` and few if any users will have this turned on for at least the next release: ```r library(arrow) #> See arrow_info() for available features ``` This PR adds "engine" to the list of features we don't message users about and clarifies the message so that it's more clear why it's being shown: ```r library(arrow) #> Some features of Arrow C++ are turned off. Run `arrow_info()` for more information. ``` Closes apache#12842 from paleolimbot/r-onattach Lead-authored-by: Dewey Dunnington <[email protected]> Co-authored-by: Jonathan Keane <[email protected]> Signed-off-by: Jonathan Keane <[email protected]>
- Loading branch information