Query::Context - removed some junk

Reviewers: teon.banek, mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D278
This commit is contained in:
florijan 2017-04-13 16:11:44 +02:00
parent 67b7428e5e
commit 59a9aaea16

View File

@ -5,22 +5,11 @@
namespace query {
class TypedcheckedTree {};
class LogicalPlan {};
class Context;
class Query;
class LogicalPlanGenerator {
public:
std::vector<LogicalPlan> Generate(TypedcheckedTree &, Context &) {
return {LogicalPlan()};
}
};
/**
* Future-proofing for the time when we'll actually have
* something to configure in query execution.
*/
struct Config {
LogicalPlanGenerator logical_plan_generator;
};
class Context {