summaryrefslogtreecommitdiffstats
path: root/tests/de_level_tag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/de_level_tag.cpp')
-rw-r--r--tests/de_level_tag.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/de_level_tag.cpp b/tests/de_level_tag.cpp
index c175357..6fead54 100644
--- a/tests/de_level_tag.cpp
+++ b/tests/de_level_tag.cpp
@@ -17,6 +17,7 @@
#include "framework/DynamicExtension.h"
#include "shard/ISAMTree.h"
#include "query/rangequery.h"
+#include "framework/reconstruction/LevelingPolicy.h"
#include <check.h>
using namespace de;
@@ -25,7 +26,8 @@ typedef Rec R;
typedef ISAMTree<R> S;
typedef rq::Query<S> Q;
-typedef DynamicExtension<S, Q, LayoutPolicy::LEVELING, DeletePolicy::TAGGING, SerialScheduler> DE;
+typedef DynamicExtension<S, Q, DeletePolicy::TAGGING, SerialScheduler> DE;
+ReconstructionPolicy<S, Q> *recon = new LevelingPolicy<S, Q>(2, 1000);
#include "include/dynamic_extension.h"