summaryrefslogtreecommitdiffstats
path: root/tests/de_tier_tomb.cpp
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-22 15:12:13 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-22 15:12:13 -0500
commitba65c8976f54d4da2467074235a12f5be0bd5ebc (patch)
tree955d5995f211d8a7a24f7b106912773db5e3a5ba /tests/de_tier_tomb.cpp
parent5617bed5257506d3dfda8537b16f44b3e40f1b42 (diff)
downloaddynamic-extension-ba65c8976f54d4da2467074235a12f5be0bd5ebc.tar.gz
Continued development
Diffstat (limited to 'tests/de_tier_tomb.cpp')
-rw-r--r--tests/de_tier_tomb.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/de_tier_tomb.cpp b/tests/de_tier_tomb.cpp
index 930d0d5..42b0625 100644
--- a/tests/de_tier_tomb.cpp
+++ b/tests/de_tier_tomb.cpp
@@ -18,6 +18,7 @@
#include "shard/ISAMTree.h"
#include "shard/TrieSpline.h"
#include "query/rangequery.h"
+#include "framework/reconstruction/TieringPolicy.h"
#include <check.h>
using namespace de;
@@ -25,7 +26,8 @@ using namespace de;
typedef Rec R;
typedef ISAMTree<R> S;
typedef rq::Query<S> Q;
-typedef DynamicExtension<S, Q, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE, SerialScheduler> DE;
+typedef DynamicExtension<S, Q, DeletePolicy::TOMBSTONE, SerialScheduler> DE;
+ReconstructionPolicy<S, Q> *recon = new TieringPolicy<S, Q>(2, 1000);
#include "include/dynamic_extension.h"