All files for the Release are now isolated

This commit is contained in:
Marko Budiselic
2016-08-10 09:39:02 +01:00
parent 95aa385e31
commit 869da8dcda
228 changed files with 672 additions and 475 deletions

View File

@@ -16,6 +16,7 @@ int main(void)
{
std::set_terminate(&terminate_handler);
Db db;
QueryEngine engine;
cout << "-- Memgraph query engine --" << endl;
@@ -30,7 +31,7 @@ int main(void)
// execute command
try {
engine.execute(command);
engine.execute(command, db);
} catch (const std::exception& e) {
cout << e.what() << endl;
} catch (const QueryEngineException& e) {