-
Notifications
You must be signed in to change notification settings - Fork 448
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
refactor(interactive): Upgrade arrow to 15.0.2 #3892
Conversation
flex/cmake/FindArrow.cmake
Outdated
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.
FindArrow.cmake
appears incompatible with newer versions of Arrow. Simply using find_package(arrow)
appears to work. Thanks @sighingnow
@@ -121,12 +121,20 @@ find_package(Boost REQUIRED COMPONENTS system filesystem | |||
context program_options regex thread date_time) | |||
add_definitions("-DBOOST_BIND_GLOBAL_PLACEHOLDERS") | |||
|
|||
#find hiactor---------------------------------------------------------------------- |
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.
Move the import of Hiactor
from bin/CMakeLists.txt
to CMakeLists.txt
. Otherwise cmake .. -DBUILD_HQPS=OFF
will fail. Will investigate this issue later: #3903
find_package(Hiactor) in root cmake will resolve a cmake problem, more infomation is described in #3891. Will be investigated later.