Skip to content
Closed
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
7 changes: 4 additions & 3 deletions cpp/cmake_modules/DefineOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -478,10 +478,11 @@ advised that if this is enabled 'install' will fail silently on components;\
that have not been built"
OFF)

set(ARROW_SUBSTRAIT_REPO_DEFAULT "https://github.com/substrait-io/substrait")
set(ARROW_SUBSTRAIT_REPO_DEFAULT "substrait-io/substrait")
define_option_string(ARROW_SUBSTRAIT_REPO
"Custom git repository URL for downloading Substrait sources.;\
See also ARROW_SUBSTRAIT_TAG" "${ARROW_SUBSTRAIT_REPO_DEFAULT}")
"Custom GitHub user/repository pair for downloading Substrait sources.;\
See also ARROW_SUBSTRAIT_TAG"
"${ARROW_SUBSTRAIT_REPO_DEFAULT}")

set(ARROW_SUBSTRAIT_TAG_DEFAULT "e1b4c04a1b518912f4c4065b16a1b2c0ac8e14cf")
define_option_string(ARROW_SUBSTRAIT_TAG
Expand Down
3 changes: 1 addition & 2 deletions cpp/src/arrow/engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ set(SUBSTRAIT_PROTOS
type_expressions)

externalproject_add(substrait_ep
GIT_REPOSITORY "${ARROW_SUBSTRAIT_REPO}"
GIT_TAG "${ARROW_SUBSTRAIT_TAG}"
URL "https://github.com/${ARROW_SUBSTRAIT_REPO}/archive/${ARROW_SUBSTRAIT_TAG}.tar.gz"
SOURCE_DIR "${SUBSTRAIT_LOCAL_DIR}"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
Expand Down