stasis-bLSM/test/check_gen.cpp

41 lines
753 B
C++
Raw Normal View History

#include <stasis/transactional.h>
#undef begin
#undef end
#include "logstore.h"
#include "regionAllocator.h"
int main(int argc, char **argv)
{
unlink("storefile.txt");
unlink("logfile.txt");
sync();
logtable<datatuple>::init_stasis();
int xid = Tbegin();
logtable<datatuple> ltable(1000, 10000, 5);
recordid table_root = ltable.allocTable(xid);
Tcommit(xid);
xid = Tbegin();
RegionAllocator * ro_alloc = new RegionAllocator();
diskTreeComponent::internalNodes::iterator * it = new diskTreeComponent::internalNodes::iterator(xid,ro_alloc, ltable.get_tree_c2()->get_root_rid() );
it->close();
delete it;
delete ro_alloc;
Tcommit(xid);
logtable<datatuple>::deinit_stasis();
}