From 08d6c84b9d69b500c964a8ff66e726e1f01f2095 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Mon, 22 May 2023 13:25:20 -0400 Subject: Progress towards generalization of shard interface --- include/framework/ShardInterface.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'include/framework/ShardInterface.h') diff --git a/include/framework/ShardInterface.h b/include/framework/ShardInterface.h index 5d07a99..1f48a45 100644 --- a/include/framework/ShardInterface.h +++ b/include/framework/ShardInterface.h @@ -1,5 +1,5 @@ /* - * include/shard/ShardInterface.h + * include/framework/ShardInterface.h * * Copyright (C) 2023 Douglas Rumbaugh * @@ -14,12 +14,7 @@ template concept ShardInterface = requires(S s, void *p) { - //s.point_lookup(); - //s.tombstone_lookup(); - //s.delete_record(); - - {s.get_query_state(p)} -> std::convertible_to; - {s.delete_query_state(p)}; + s.point_lookup(); {s.get_record_count()} -> std::convertible_to; {s.get_tombstone_count()} -> std::convertible_to; -- cgit v1.2.3