summaryrefslogtreecommitdiffstats
path: root/tests/de_tier_concurrent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/de_tier_concurrent.cpp')
-rw-r--r--tests/de_tier_concurrent.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/de_tier_concurrent.cpp b/tests/de_tier_concurrent.cpp
index bb2ec7f..ce41dbc 100644
--- a/tests/de_tier_concurrent.cpp
+++ b/tests/de_tier_concurrent.cpp
@@ -17,12 +17,16 @@
#include "framework/DynamicExtension.h"
#include "shard/ISAMTree.h"
#include "query/rangequery.h"
+#include "framework/scheduling//FIFOScheduler.h"
#include <check.h>
using namespace de;
typedef Rec R;
-typedef DynamicExtension<R, ISAMTree<R>, rq::Query<R, ISAMTree<R>>, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE, FIFOScheduler> DE;
+typedef ISAMTree<R> S;
+typedef rq::Query<S> Q;
+
+typedef DynamicExtension<S, Q, LayoutPolicy::TEIRING, DeletePolicy::TOMBSTONE, FIFOScheduler> DE;
#include "include/concurrent_extension.h"