}
public static BTree createStringTest(Path path, int keySize)
throws IOException, java.sql.SQLException
{
BlockStore store = BlockStore.create(path);
Block block = store.allocateIndexBlock();
long blockId = block.getBlockId();
block.free();
return new BTree(store, blockId, keySize, new StringKeyCompare());
}