db_index test -> the index creation is tested for now
This commit is contained in:
16
tests/db_index.cpp
Normal file
16
tests/db_index.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <iostream>
|
||||
|
||||
#include "storage/indexes/index.hpp"
|
||||
|
||||
using std::cout;
|
||||
using std::endl;
|
||||
|
||||
using StringUniqueKeyAsc = UniqueKeyAsc<std::string>;
|
||||
|
||||
int main(void)
|
||||
{
|
||||
// index creation
|
||||
auto index = std::make_shared<Index<StringUniqueKeyAsc, std::string>>();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user