-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-16941: [Java][Dataset] Update more jni_util.h paths #13503
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
Conversation
This is a follow-up of apache#13481. We also need to update jni_util.h path in java/dataset/src/main/cpp/jni_util_test.cc. Removing "./" is needless but it's redundant.
|
Cc: @lwhite1 |
lidavidm
left a comment
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.
Thanks for catching this, Kou (would have thought CI tests this, does it not?)
|
It seems that we don't have a job that uses |
|
Should we also add the following change to this pull request? diff --git a/ci/docker/linux-apt-jni.dockerfile b/ci/docker/linux-apt-jni.dockerfile
index 6673b001d7..be6562eae6 100644
--- a/ci/docker/linux-apt-jni.dockerfile
+++ b/ci/docker/linux-apt-jni.dockerfile
@@ -69,7 +69,7 @@ ARG cmake=3.11.4
RUN wget -nv -O - https://github.com/Kitware/CMake/releases/download/v${cmake}/cmake-${cmake}-Linux-x86_64.tar.gz | tar -xzf - -C /opt
ENV PATH=/opt/cmake-${cmake}-Linux-x86_64/bin:$PATH
-ENV ARROW_BUILD_TESTS=OFF \
+ENV ARROW_BUILD_TESTS=ON \
ARROW_DATASET=ON \
ARROW_FLIGHT=OFF \
ARROW_GANDIVA_JAVA=ON \ |
|
Yes, let's make sure at least one CI job covers this. |
|
OK. I enable it. |
|
+1 |
This is a follow-up of apache#13481. We also need to update jni_util.h path in java/dataset/src/main/cpp/jni_util_test.cc. Removing "./" is needless but it's redundant. Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
This is a follow-up of apache#13481. We also need to update jni_util.h path in java/dataset/src/main/cpp/jni_util_test.cc. Removing "./" is needless but it's redundant. Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
This is a follow-up of #13481.
We also need to update jni_util.h path in
java/dataset/src/main/cpp/jni_util_test.cc.
Removing "./" is needless but it's redundant.