Skip to content

Commit 46b667a

Browse files
committed
Build and run presto_server
1 parent af23a10 commit 46b667a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

presto-native-execution/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ option(PRESTO_ENABLE_JWT "Enable JWT (JSON Web Token) authentication" OFF)
7575

7676
option(PRESTO_ENABLE_ARROW_FLIGHT_CONNECTOR "Enable Arrow Flight connector" OFF)
7777

78-
option(PRESTO_ENABLE_SPATIAL "Enable spatial support" ON)
78+
option(PRESTO_ENABLE_SPATIAL "Enable spatial support" OFF)
79+
7980

8081
# Set all Velox options below and make sure that if we include folly headers or
8182
# other dependency headers that include folly headers we turn off the coroutines
@@ -110,12 +111,15 @@ if(PRESTO_ENABLE_CUDF)
110111
cmake_policy(SET CMP0104 NEW)
111112
endif()
112113

114+
set(PRESTO_ENABLE_SPATIAL OFF)
113115
set(
114116
VELOX_ENABLE_GEO
115117
${PRESTO_ENABLE_SPATIAL}
116118
CACHE BOOL
117119
"Enable Velox Geometry (aka spatial) support"
118120
)
121+
message(STATUS "PRESTO_ENABLE_SPATIAL: ${PRESTO_ENABLE_SPATIAL}")
122+
message(STATUS "VELOX_ENABLE_GEO: ${VELOX_ENABLE_GEO}")
119123

120124
set(VELOX_BUILD_TESTING OFF CACHE BOOL "Enable Velox tests")
121125

0 commit comments

Comments
 (0)