Skip to content
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

use offical arrow 12.0.0 #18

Merged
merged 1 commit into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

find_package(Boost REQUIRED)
find_package(arrow REQUIRED)
find_package(Arrow REQUIRED)
find_package(protobuf REQUIRED)

file(GLOB_RECURSE SRC_FILES src/*.cpp src/*.cc)
Expand Down
3 changes: 2 additions & 1 deletion cpp/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class StorageConan(ConanFile):
# "aws-sdk-cpp:transfer": False,
"arrow:filesystem_layer": True,
"arrow:dataset_modules": True,
"arrow:parquet": True,
}

exports_sources = (
Expand Down Expand Up @@ -73,7 +74,7 @@ def configure(self):

def requirements(self):
self.requires("boost/1.81.0")
self.requires("arrow/12.0.0-dev1@milvus/dev")
self.requires("arrow/12.0.0")
self.requires("protobuf/3.21.9")
if self.options.with_ut:
self.requires("gtest/1.13.0")
Expand Down