forked from daphne-eu/daphne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DAPHNE-daphne-eu#473] Improved Apache Arrow support
Cleaned up the integration of Apache Arrow for Parquet reader support. * Arrow is now always built from 11.0 release package * CMake code is now free from hard coded paths * It seems we can drop the requirement to install boost libraries as everything compiles just fine without it, and we don't use much Arrow anyway atm Closes daphne-eu#473
- Loading branch information
1 parent
b5b24e5
commit b4b242f
Showing
15 changed files
with
66 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- cpp/cmake_modules/DefineOptions.cmake 2023-01-18 14:08:12.000000000 +0100 | ||
+++ cpp/cmake_modules/DefineOptions.cmake 2023-02-08 23:45:20.907959122 +0100 | ||
|
||
@@ -729,7 +729,7 @@ | ||
# Compute default values for omitted variables | ||
|
||
if(NOT ARROW_GIT_ID) | ||
+ execute_process(COMMAND "git" " -c log.showSignature=false" "log" "-n1" "--format=%H" | ||
- execute_process(COMMAND "git" "log" "-n1" "--format=%H" | ||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} | ||
OUTPUT_VARIABLE ARROW_GIT_ID | ||
OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
--- python/cmake_modules/DefineOptions.cmake 2023-01-18 14:08:12.000000000 +0100 | ||
+++ python/cmake_modules/DefineOptions.cmake 2023-02-08 23:45:20.907959122 +0100 | ||
@@ -729,7 +729,7 @@ | ||
# Compute default values for omitted variables | ||
|
||
if(NOT ARROW_GIT_ID) | ||
+ execute_process(COMMAND "git" " -c log.showSignature=false" "log" "-n1" "--format=%H" | ||
- execute_process(COMMAND "git" "log" "-n1" "--format=%H" | ||
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} | ||
OUTPUT_VARIABLE ARROW_GIT_ID | ||
OUTPUT_STRIP_TRAILING_WHITESPACE) | ||
|