Skip to content

Commit

Permalink
Columnstore empty submodule fix
Browse files Browse the repository at this point in the history
CMake doesn't set ${PLUGIN_COLUMNSTORE} to anything.
  • Loading branch information
midenok committed Apr 1, 2024
1 parent c477697 commit 099ca49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion storage/columnstore/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#set(PLUGIN_COLUMNSTORE "NO" CACHE STRING "Enable ColumnStore engine")

if("NO" STREQUAL "${PLUGIN_COLUMNSTORE}")
if("NO" STREQUAL "${PLUGIN_COLUMNSTORE}" OR
NOT DEFINED ${PLUGIN_COLUMNSTORE})
return()
endif()

Expand Down

0 comments on commit 099ca49

Please sign in to comment.