1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-24 06:53:59 +08:00
timescaledb/tsl/CMakeLists.txt
Alexander Kuzmenkov bf20e5f970 Bulk decompression of text columns
Implement bulk decompression for text columns. This will allow us to use
them in the vectorized computation pipeline.
2024-01-31 14:03:01 +01:00

9 lines
204 B
CMake

option(CODECOVERAGE "Enable fuzzing of compression using Libfuzzer" OFF)
if(COMPRESSION_FUZZING)
add_compile_definitions(TS_COMPRESSION_FUZZING=1)
endif()
add_subdirectory(test)
add_subdirectory(src)