diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a81fbb2..3f975e75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/ci/scripts/build_paimon.sh b/ci/scripts/build_paimon.sh index f7771400..5def3757 100755 --- a/ci/scripts/build_paimon.sh +++ b/ci/scripts/build_paimon.sh @@ -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