Open kou opened 1 week ago
:warning: GitHub issue #44563 has been automatically assigned in GitHub to PR creator.
@jleibs Could you try this?
Just curious how did parquet support dependency to ARROW_IPC?
It also uses the same approach:
This does not fix my issues. I am explicitly setting:
-DARROW_COMPUTE=OFF
so the dependency on ARROW_IPC
is irrelevant.
The issue is that function_internal.cc is included in the build even if ARROW_COMPUTE
is disabled.
In short, there is a baseline level of compute functionality included regardless of the ARROW_COMPUTE
flag,
As far as I can tell ARROW_COMPUTE
falg should actually be called something like ARROW_COMPUTE_EXTRA
.
Rationale for this change
The compute module uses the IPC module features for option serialization.
What changes are included in this PR?
Enable the IPC module when the compute module is enabled.
Are these changes tested?
Yes.
Are there any user-facing changes?
Yes.