Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ option(PAIMON_ENABLE_AVRO "Whether to enable avro file format" ON)
option(PAIMON_ENABLE_ORC "Whether to enable orc file format" ON)
option(PAIMON_ENABLE_LANCE "Whether to enable lance file format" OFF)
option(PAIMON_ENABLE_JINDO "Whether to enable jindo file system" OFF)
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" ON)
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" ON)
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" OFF)
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" OFF)

if(PAIMON_ENABLE_ORC)
add_definitions(-DPAIMON_ENABLE_ORC)
Expand Down
2 changes: 2 additions & 0 deletions ci/scripts/build_paimon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ CMAKE_ARGS=(
"-DPAIMON_BUILD_TESTS=ON"
"-DPAIMON_ENABLE_LANCE=ON"
"-DPAIMON_ENABLE_JINDO=ON"
"-DPAIMON_ENABLE_LUMINA=ON"
"-DPAIMON_ENABLE_LUCENE=ON"
)

if [[ "${enable_sanitizer}" == "true" ]]; then
Expand Down
Loading