All possible request changes from D9#146 are done

This commit is contained in:
Marko Budiselic
2016-11-30 11:05:48 +01:00
parent 5eb90f9e52
commit cfd36be2e0
9 changed files with 57 additions and 29 deletions

View File

@@ -299,13 +299,13 @@ auto load_basic_functions(Db &db)
.type(type);
if (it_type.count() > it_vertex.count()) {
// Going through vertices wiil probably be faster
// TODO: Going through vertices wiil probably be faster
it_vertex.to().for_all([&](auto m) {
// PRINT m
});
} else {
// Going through edges will probably be faster
// TODO: Going through edges will probably be faster
it_type.to().for_all([&](auto m) {
// PRINT m
});

View File

@@ -24,7 +24,6 @@ int main(int argc, char *argv[])
logging::init_sync();
logging::log->pipe(std::make_unique<Stdout>());
auto log = logging::log->logger("test");
log.info("bla");
// init db, functions and stripper
Db db;