From d116b94389538aa8e0e7354fae77693b980de4f0 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Mon, 24 Feb 2025 11:14:52 -0500 Subject: Query Preemption: still has one or two bugs, but mostly works --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3faa60b..0273b5a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -317,6 +317,12 @@ if (tail_bench) target_link_libraries(mixed_workload_average PUBLIC gsl pthread atomic) target_include_directories(mixed_workload_average PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) target_link_options(mixed_workload_average PUBLIC -mcx16) + + add_executable(insert_query_threads ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/tail-latency/insert_query_threads.cpp) + target_link_libraries(insert_query_threads PUBLIC gsl pthread atomic) + target_include_directories(insert_query_threads PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) + target_link_options(insert_query_threads PUBLIC -mcx16) + endif() if (bench) -- cgit v1.2.3