diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-02-09 12:42:55 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-02-09 12:42:55 -0500 |
| commit | aa1b40e9249afc03bf1a2f35de4cbf67c7f9b47e (patch) | |
| tree | 5c9b6124b8c3f9f0ae2b9537890a5b4f3dd9f72e /tests | |
| parent | 402fc269c0aaa671d84a6d15918735ad4b90e6b2 (diff) | |
| download | dynamic-extension-aa1b40e9249afc03bf1a2f35de4cbf67c7f9b47e.tar.gz | |
Framework: Fixed a bug where tagged deletes didn't release the epoch
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/include/dynamic_extension.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/tests/include/dynamic_extension.h b/tests/include/dynamic_extension.h index f0f13dd..6e9b16c 100644 --- a/tests/include/dynamic_extension.h +++ b/tests/include/dynamic_extension.h @@ -22,14 +22,16 @@ * should be included in the source file that includes this one, above the * include statement. */ -//#include "testing.h" -//#include "framework/DynamicExtension.h" -//#include "framework/scheduling/SerialScheduler.h" -//#include "shard/ISAMTree.h" -//#include "query/rangequery.h" -//#include <check.h> -//using namespace de; -//typedef DynamicExtension<R, ISAMTree<R>, rq::Query<ISAMTree<R>, R>, LayoutPolicy::TEIRING, DeletePolicy::TAGGING, SerialScheduler> DE; +/* +#include "testing.h" +#include "framework/DynamicExtension.h" +#include "framework/scheduling/SerialScheduler.h" +#include "shard/ISAMTree.h" +#include "query/rangequery.h" +#include <check.h> +using namespace de; +typedef DynamicExtension<R, ISAMTree<R>, rq::Query<ISAMTree<R>, R>, LayoutPolicy::TEIRING, DeletePolicy::TAGGING, SerialScheduler> DE; +*/ START_TEST(t_create) |