-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-34843: [R] Fix R build failed caused by Acero refactor #34844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
36d22ce
00ac7c3
129f2d9
c5da945
8f56065
71e8584
26c73f2
946c701
8bfa93e
0f8daea
fdbc370
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,6 +53,7 @@ def install | |
| args = %W[ | ||
| -DARROW_BUILD_SHARED=OFF | ||
| -DARROW_BUILD_UTILITIES=ON | ||
| -DARROW_ACERO=ON | ||
|
||
| -DARROW_COMPUTE=ON | ||
| -DARROW_CSV=ON | ||
| -DARROW_DATASET=ON | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,6 +44,7 @@ def install | |
| args = %W[ | ||
| -DARROW_BUILD_SHARED=OFF | ||
| -DARROW_BUILD_UTILITIES=ON | ||
| -DARROW_ACERO=ON | ||
|
||
| -DARROW_COMPUTE=ON | ||
| -DARROW_CSV=ON | ||
| -DARROW_CXXFLAGS="-D_LIBCPP_DISABLE_AVAILABILITY" | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this?
ARROW_DATASET=ONmust enableARROW_ACEROautomatically:arrow/cpp/cmake_modules/DefineOptions.cmake
Lines 308 to 313 in ee42b90
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what the guidelines are. R uses Acero directly, in addition to transitively through datasets. So if R decided to stop using datasets then it would still need the acero dependency. However, if we want to leave it out so things are concise then it should work. I am fine either way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see. Thanks.
For
dev/tasks/homebrew-formulae/apache-arrow.rb, this is a file for Homebrew's CI. (We should sync with https://github.com/Homebrew/homebrew-core/blob/master/Formula/apache-arrow.rb .) This is not only for R. In general, Homebrew enables all features as much as possible. So I think that we don't need to assume that we may disable onlyARROW_DATASETin this file. (We should omit redundant-DARROW_ACERO=ON.)For
dev/tasks/homebrew-formulae/autobrew/, they are only for R. So I think that your point is valid.