write buffer pool

This commit is contained in:
2024-04-25 11:03:28 +00:00
parent 36a615aaad
commit 28bdaea8eb
8 changed files with 493 additions and 3 deletions

View File

@ -4,4 +4,6 @@ if(OJ_TEST_BPT)
set_target_properties(code PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
endif()
add_executable(replacer_test replacer_test.cpp)
target_link_libraries(replacer_test bpt GTest::gtest_main)
target_link_libraries(replacer_test bpt GTest::gtest_main)
add_executable(buffer_pool_manager_test buffer_pool_manager_test.cpp)
target_link_libraries(buffer_pool_manager_test bpt GTest::gtest_main)