diff options
Diffstat (limited to 'include/shard/PGM.h')
| -rw-r--r-- | include/shard/PGM.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/shard/PGM.h b/include/shard/PGM.h index af20594..2cd153e 100644 --- a/include/shard/PGM.h +++ b/include/shard/PGM.h @@ -16,15 +16,21 @@ #include <concepts> #include "pgm/pgm_index.hpp" -#include "ds/PriorityQueue.h" +#include "psu-ds/PriorityQueue.h" #include "util/Cursor.h" -#include "ds/BloomFilter.h" +#include "psu-ds/BloomFilter.h" #include "util/bf_config.h" #include "framework/MutableBuffer.h" #include "framework/RecordInterface.h" #include "framework/ShardInterface.h" #include "framework/QueryInterface.h" +using psudb::CACHELINE_SIZE; +using psudb::BloomFilter; +using psudb::PriorityQueue; +using psudb::queue_record; +using psudb::Alias; + namespace de { template <RecordInterface R> |