diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-24 11:14:52 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-24 11:14:52 -0500 |
| commit | d116b94389538aa8e0e7354fae77693b980de4f0 (patch) | |
| tree | 918e29a6734c726f398f2d06894fdb42d9752fa9 /CMakeLists.txt | |
| parent | 40fe2e7ea56d49a065a4a53b7f8a4a918a5d78b0 (diff) | |
| download | dynamic-extension-d116b94389538aa8e0e7354fae77693b980de4f0.tar.gz | |
Query Preemption: still has one or two bugs, but mostly works
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
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) |