Skip to content
Open
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
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ endif ()
option(BUILD_TEST "Build tests" ON)
message("cmake using: BUILD_TEST=${BUILD_TEST}")

option(ENABLE_ANTLR4 "Enable ANTLR4 runtime" ON)
option(ENABLE_ANTLR4 "Enable ANTLR4 runtime" OFF)
message("cmake using: ENABLE_ANTLR4=${ENABLE_ANTLR4}")

option(ENABLE_SNAPPY "Enable Google Snappy compression" ON)
Expand Down
4 changes: 4 additions & 0 deletions cpp/src/common/tsblock/vector/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ class Vector {

FORCE_INLINE bool has_null() { return has_null_; }

FORCE_INLINE common::BitMap& get_bitmap() { return nulls_; }

FORCE_INLINE common::ByteBuffer& get_value_data() { return values_; }

// We want derived class to have access to base class members, so it is
// defined as protected
protected:
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/cwrapper/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ under the License.
]]
message("Running in cwrapper directory")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CWRAPPER_SRC_LIST tsfile_cwrapper.cc)
set(CWRAPPER_SRC_LIST tsfile_cwrapper.cc arrow_c.cc)
add_library(cwrapper_obj OBJECT ${CWRAPPER_SRC_LIST})

# install header files
Expand Down
Loading