This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 05a8c8e2be MINOR: [C++][Dev] Remove unused Hive flag (#13439)
05a8c8e2be is described below
commit 05a8c8e2be7f2d976c2a8aa815d63b1a5887a171
Author: David Li <[email protected]>
AuthorDate: Mon Jun 27 19:48:52 2022 -0400
MINOR: [C++][Dev] Remove unused Hive flag (#13439)
Stops CMake from warning about an unused flag after Hive support was
removed.
Authored-by: David Li <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
dev/archery/archery/lang/cpp.py | 1 -
docs/source/developers/cpp/building.rst | 1 -
2 files changed, 2 deletions(-)
diff --git a/dev/archery/archery/lang/cpp.py b/dev/archery/archery/lang/cpp.py
index 158cc48bad..f113b43ba6 100644
--- a/dev/archery/archery/lang/cpp.py
+++ b/dev/archery/archery/lang/cpp.py
@@ -222,7 +222,6 @@ class CppConfiguration:
yield ("ARROW_GANDIVA", truthifier(self.with_gandiva))
yield ("ARROW_GCS", truthifier(self.with_gcs))
yield ("ARROW_HDFS", truthifier(self.with_hdfs))
- yield ("ARROW_HIVESERVER2", truthifier(self.with_hiveserver2))
yield ("ARROW_IPC", truthifier(self.with_ipc))
yield ("ARROW_JSON", truthifier(self.with_json))
yield ("ARROW_JNI", truthifier(self.with_jni))
diff --git a/docs/source/developers/cpp/building.rst
b/docs/source/developers/cpp/building.rst
index 40c007ce2f..83c774c3dc 100644
--- a/docs/source/developers/cpp/building.rst
+++ b/docs/source/developers/cpp/building.rst
@@ -329,7 +329,6 @@ boolean flags to ``cmake``.
* ``-DARROW_GCS=ON``: Build Arrow with GCS support (requires the GCloud SDK
for C++)
* ``-DARROW_HDFS=ON``: Arrow integration with libhdfs for accessing the Hadoop
Filesystem
-* ``-DARROW_HIVESERVER2=ON``: Client library for HiveServer2 database protocol
* ``-DARROW_JEMALLOC=ON``: Build the Arrow jemalloc-based allocator, on by
default
* ``-DARROW_JSON=ON``: JSON reader module
* ``-DARROW_MIMALLOC=ON``: Build the Arrow mimalloc-based allocator